Merge pull request #1062 from wolfv/micromamba

bootstrap base env with micromamba
pull/1130/head
Min RK 2022-01-27 09:42:53 +01:00 zatwierdzone przez GitHub
commit 7f89926e51
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
7 zmienionych plików z 125 dodań i 114 usunięć

Wyświetl plik

@ -55,6 +55,8 @@ class CondaBuildPack(BaseImage):
("NPM_DIR", "${APP_BASE}/npm"),
("NPM_CONFIG_GLOBALCONFIG", "${NPM_DIR}/npmrc"),
("NB_ENVIRONMENT_FILE", self._nb_environment_file),
("MAMBA_ROOT_PREFIX", "${CONDA_DIR}"),
("MAMBA_EXE", "/tmp/bin/micromamba"),
]
if self._nb_requirements_file:
env.append(("NB_REQUIREMENTS_FILE", self._nb_requirements_file))
@ -98,7 +100,7 @@ class CondaBuildPack(BaseImage):
All scripts here should be independent of contents of the repository.
This sets up through `install-miniforge.bash` (found in this directory):
This sets up through `install-base-env.bash` (found in this directory):
- a directory for the conda environment and its ownership by the
notebook user
@ -115,8 +117,8 @@ class CondaBuildPack(BaseImage):
"root",
r"""
TIMEFORMAT='time: %3R' \
bash -c 'time /tmp/install-miniforge.bash' && \
rm -rf /tmp/install-miniforge.bash /tmp/env
bash -c 'time /tmp/install-base-env.bash' && \
rm -rf /tmp/install-base-env.bash /tmp/env
""",
),
(
@ -146,7 +148,7 @@ class CondaBuildPack(BaseImage):
"""
files = {
"conda/install-miniforge.bash": "/tmp/install-miniforge.bash",
"conda/install-base-env.bash": "/tmp/install-base-env.bash",
"conda/activate-conda.sh": "/etc/profile.d/activate-conda.sh",
}
py_version = self.python_version
@ -337,9 +339,9 @@ class CondaBuildPack(BaseImage):
"${NB_USER}",
r"""
TIMEFORMAT='time: %3R' \
bash -c 'time mamba env update -p {0} -f "{1}" && \
time mamba clean --all -f -y && \
mamba list -p {0} \
bash -c 'time ${{MAMBA_EXE}} install -p {0} -f "{1}" && \
time ${{MAMBA_EXE}} clean --all -y && \
${{MAMBA_EXE}} list -p {0} \
'
""".format(
env_prefix, environment_yml
@ -356,9 +358,9 @@ class CondaBuildPack(BaseImage):
(
"${NB_USER}",
r"""
mamba install -p {0} r-base{1} r-irkernel=1.2 r-devtools -y && \
mamba clean --all -f -y && \
mamba list -p {0}
${{MAMBA_EXE}} install -p {0} r-base{1} r-irkernel=1.2 r-devtools -y && \
${{MAMBA_EXE}} clean --all -y && \
${{MAMBA_EXE}} list -p {0}
""".format(
env_prefix, r_pin
),

Wyświetl plik

@ -1,11 +1,13 @@
# enable conda and activate the notebook environment
CONDA_PROFILE="${CONDA_DIR}/etc/profile.d/conda.sh"
/tmp/bin/micromamba shell init -s bash -p ${CONDA_DIR}
export MAMBA_ROOT_PREFIX="/srv/conda"
CONDA_PROFILE="${CONDA_DIR}/etc/profile.d/mamba.sh"
test -f $CONDA_PROFILE && . $CONDA_PROFILE
if [[ "${KERNEL_PYTHON_PREFIX}" != "${NB_PYTHON_PREFIX}" ]]; then
# if the kernel is a separate env, stack them
# so both are on PATH, notebook first
conda activate ${KERNEL_PYTHON_PREFIX}
conda activate --stack ${NB_PYTHON_PREFIX}
micromamba activate ${KERNEL_PYTHON_PREFIX}
micromamba activate --stack ${NB_PYTHON_PREFIX}
# even though it's second on $PATH
# make sure CONDA_DEFAULT_ENV is the *kernel* env
@ -14,5 +16,5 @@ if [[ "${KERNEL_PYTHON_PREFIX}" != "${NB_PYTHON_PREFIX}" ]]; then
# which only contains UI when the two are different
export CONDA_DEFAULT_ENV="${KERNEL_PYTHON_PREFIX}"
else
conda activate ${NB_PYTHON_PREFIX}
micromamba activate ${NB_PYTHON_PREFIX}
fi

Wyświetl plik

@ -0,0 +1,87 @@
#!/bin/bash
# This downloads and installs a pinned version of micromamba
# and sets up the base environment
set -ex
cd $(dirname $0)
export MAMBA_VERSION=0.19.1
export CONDA_VERSION=4.11.0
URL="https://anaconda.org/conda-forge/micromamba/${MAMBA_VERSION}/download/linux-64/micromamba-${MAMBA_VERSION}-0.tar.bz2"
# make sure we don't do anything funky with user's $HOME
# since this is run as root
unset HOME
mkdir -p ${CONDA_DIR}
time wget -qO- ${URL} | tar -xvj bin/micromamba
chmod 0755 /tmp/bin/micromamba
export MAMBA_ROOT_PREFIX=${CONDA_DIR}
export MAMBA_EXE="/tmp/bin/micromamba"
eval "$(/tmp/bin/micromamba shell hook -p ${CONDA_DIR} -s posix)"
micromamba activate
export PATH="${PWD}/bin:$PATH"
cat <<EOT >> ${CONDA_DIR}/.condarc
channels:
- conda-forge
- defaults
auto_update_conda: false
show_channel_urls: true
update_dependencies: false
# channel_priority: flexible
EOT
micromamba install conda=${CONDA_VERSION} mamba=${MAMBA_VERSION} -y
echo "installing notebook env:"
cat "${NB_ENVIRONMENT_FILE}"
time micromamba create -p ${NB_PYTHON_PREFIX} -f "${NB_ENVIRONMENT_FILE}"
if [[ ! -z "${NB_REQUIREMENTS_FILE:-}" ]]; then
echo "installing pip requirements"
cat "${NB_REQUIREMENTS_FILE}"
${NB_PYTHON_PREFIX}/bin/python -mpip install --no-cache --no-deps -r "${NB_REQUIREMENTS_FILE}"
fi
# empty conda history file,
# which seems to result in some effective pinning of packages in the initial env,
# which we don't intend.
# this file must not be *removed*, however
echo '' > ${NB_PYTHON_PREFIX}/conda-meta/history
if [[ ! -z "${KERNEL_ENVIRONMENT_FILE:-}" ]]; then
# install kernel env and register kernelspec
echo "installing kernel env:"
cat "${KERNEL_ENVIRONMENT_FILE}"
time micromamba create -p ${KERNEL_PYTHON_PREFIX} -f "${KERNEL_ENVIRONMENT_FILE}"
if [[ ! -z "${KERNEL_REQUIREMENTS_FILE:-}" ]]; then
echo "installing pip requirements for kernel"
cat "${KERNEL_REQUIREMENTS_FILE}"
${KERNEL_PYTHON_PREFIX}/bin/python -mpip install --no-cache --no-deps -r "${KERNEL_REQUIREMENTS_FILE}"
fi
${KERNEL_PYTHON_PREFIX}/bin/ipython kernel install --prefix "${NB_PYTHON_PREFIX}"
echo '' > ${KERNEL_PYTHON_PREFIX}/conda-meta/history
micromamba list -p ${KERNEL_PYTHON_PREFIX}
fi
# Clean things out!
time micromamba clean --all -y
# Remove the pip cache created as part of installing micromamba
rm -rf /root/.cache
chown -R $NB_USER:$NB_USER ${CONDA_DIR}
micromamba list -p ${NB_PYTHON_PREFIX}
# Set NPM config
${NB_PYTHON_PREFIX}/bin/npm config --global set prefix ${NPM_DIR}

Wyświetl plik

@ -1,96 +0,0 @@
#!/bin/bash
# This downloads and installs a pinned version of miniforge
# and sets up the base environment
set -ex
cd $(dirname $0)
MINIFORGE_VERSION=4.9.2-2
MAMBA_VERSION=0.7.4
# SHA256 for installers can be obtained from https://github.com/conda-forge/miniforge/releases
SHA256SUM="7a7bfaff87680298304a97ba69bcf92f66c810995a7155a2918b99fafb8ca1dc"
URL="https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Mambaforge-${MINIFORGE_VERSION}-Linux-x86_64.sh"
INSTALLER_PATH=/tmp/miniforge-installer.sh
# make sure we don't do anything funky with user's $HOME
# since this is run as root
unset HOME
time wget --quiet $URL -O ${INSTALLER_PATH}
chmod +x ${INSTALLER_PATH}
# check sha256 checksum
if ! echo "${SHA256SUM} ${INSTALLER_PATH}" | sha256sum --quiet -c -; then
echo "sha256 mismatch for ${INSTALLER_PATH}, exiting!"
exit 1
fi
time bash ${INSTALLER_PATH} -b -p ${CONDA_DIR}
export PATH="${CONDA_DIR}/bin:$PATH"
# Preserve behavior of miniconda - packages come from conda-forge + defaults
conda config --system --append channels defaults
# Do not attempt to auto update conda or dependencies
conda config --system --set auto_update_conda false
conda config --system --set show_channel_urls true
# bug in conda 4.3.>15 prevents --set update_dependencies
echo 'update_dependencies: false' >> ${CONDA_DIR}/.condarc
# avoid future changes to default channel_priority behavior
conda config --system --set channel_priority "flexible"
time mamba install -y mamba==${MAMBA_VERSION}
echo "installing notebook env:"
cat "${NB_ENVIRONMENT_FILE}"
time mamba create -p ${NB_PYTHON_PREFIX} --file "${NB_ENVIRONMENT_FILE}"
if [[ ! -z "${NB_REQUIREMENTS_FILE:-}" ]]; then
echo "installing pip requirements"
cat "${NB_REQUIREMENTS_FILE}"
${NB_PYTHON_PREFIX}/bin/python -mpip install --no-cache --no-deps -r "${NB_REQUIREMENTS_FILE}"
fi
# empty conda history file,
# which seems to result in some effective pinning of packages in the initial env,
# which we don't intend.
# this file must not be *removed*, however
echo '' > ${NB_PYTHON_PREFIX}/conda-meta/history
if [[ ! -z "${KERNEL_ENVIRONMENT_FILE:-}" ]]; then
# install kernel env and register kernelspec
echo "installing kernel env:"
cat "${KERNEL_ENVIRONMENT_FILE}"
time mamba create -p ${KERNEL_PYTHON_PREFIX} --file "${KERNEL_ENVIRONMENT_FILE}"
if [[ ! -z "${KERNEL_REQUIREMENTS_FILE:-}" ]]; then
echo "installing pip requirements for kernel"
cat "${KERNEL_REQUIREMENTS_FILE}"
${KERNEL_PYTHON_PREFIX}/bin/python -mpip install --no-cache --no-deps -r "${KERNEL_REQUIREMENTS_FILE}"
fi
${KERNEL_PYTHON_PREFIX}/bin/ipython kernel install --prefix "${NB_PYTHON_PREFIX}"
echo '' > ${KERNEL_PYTHON_PREFIX}/conda-meta/history
mamba list -p ${KERNEL_PYTHON_PREFIX}
fi
# Clean things out!
time mamba clean --all -f -y
# Remove the big installer so we don't increase docker image size too much
rm ${INSTALLER_PATH}
# Remove the pip cache created as part of installing miniforge
rm -rf /root/.cache
chown -R $NB_USER:$NB_USER ${CONDA_DIR}
mamba list -n root
mamba list -p ${NB_PYTHON_PREFIX}
# Set NPM config
${NB_PYTHON_PREFIX}/bin/npm config --global set prefix ${NPM_DIR}

Wyświetl plik

@ -4,7 +4,18 @@ from subprocess import check_output
assert sys.version_info[:2] == (3, 5), sys.version
out = check_output(["conda", "--version"]).decode("utf8").strip()
assert out == "conda 4.9.2", out
out = check_output(["/tmp/bin/micromamba", "--version"]).decode("utf8").strip()
assert (
out
== """micromamba: 0.19.1
libmamba: 0.19.1"""
), out
out = check_output(["mamba", "--version"]).decode("utf8").strip()
assert (
out
== """mamba 0.19.1
conda 4.11.0"""
), out
import numpy

Wyświetl plik

@ -14,13 +14,17 @@ assert sorted(specs) == ["python2", "python3"], specs.keys()
import json
from subprocess import check_output
envs = json.loads(check_output(["conda", "env", "list", "--json"]).decode("utf8"))
envs = json.loads(
check_output(["/tmp/bin/micromamba", "env", "list", "--json"]).decode("utf8")
)
assert envs == {
"envs": ["/srv/conda", "/srv/conda/envs/kernel", "/srv/conda/envs/notebook"]
}, envs
pkgs = json.loads(
check_output(["conda", "list", "-n", "kernel", "--json"]).decode("utf8")
check_output(["/tmp/bin/micromamba", "list", "-n", "kernel", "--json"]).decode(
"utf8"
)
)
pkg_names = [pkg["name"] for pkg in pkgs]
assert "ipykernel" in pkg_names, pkg_names

Wyświetl plik

@ -1,3 +1,4 @@
dependencies:
- pip
- pip:
- pypi-pkg-test