kopia lustrzana https://github.com/jupyterhub/repo2docker
use experimental build of micromamba
rodzic
b08c7dc3b6
commit
d2a2c070e7
|
@ -339,7 +339,7 @@ class CondaBuildPack(BaseImage):
|
|||
"${NB_USER}",
|
||||
r"""
|
||||
TIMEFORMAT='time: %3R' \
|
||||
bash -c 'time /tmp/bin/micromamba env update -p {0} -f "{1}" && \
|
||||
bash -c 'time /tmp/bin/micromamba update -p {0} -f "{1}" && \
|
||||
# time /tmp/bin/micromamba clean --all -y && \
|
||||
/tmp/bin/micromamba list -p {0} \
|
||||
'
|
||||
|
|
|
@ -6,15 +6,15 @@ set -ex
|
|||
|
||||
cd $(dirname $0)
|
||||
|
||||
URL="https://anaconda.org/conda-forge/micromamba/0.13.1/download/linux-64/micromamba-0.13.1-0.tar.bz2"
|
||||
URL="https://github.com/mamba-org/boa-forge/releases/download/micromamba-nightly-21.5.31.1722/micromamba-nightly-linux-64"
|
||||
|
||||
# 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
|
||||
time wget ${URL} && mkdir bin && mv micromamba-nightly-linux-64 bin/micromamba
|
||||
chmod +x bin/micromamba
|
||||
|
||||
export MAMBA_ROOT_PREFIX=${CONDA_DIR}
|
||||
export MAMBA_EXE="/tmp/bin/micromamba"
|
||||
|
|
|
@ -5,6 +5,6 @@ from subprocess import check_output
|
|||
assert sys.version_info[:2] == (3, 5), sys.version
|
||||
|
||||
out = check_output(["/tmp/bin/micromamba", "--version"]).decode("utf8").strip()
|
||||
assert out == "0.13.1", out
|
||||
assert out == "21.5.31.1722", out
|
||||
|
||||
import numpy
|
||||
|
|
Ładowanie…
Reference in New Issue