We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c1a272 commit d8a3d7fCopy full SHA for d8a3d7f
repo2docker/buildpacks/conda/install-miniforge.bash
@@ -6,6 +6,7 @@ set -ex
6
7
cd $(dirname $0)
8
MINIFORGE_VERSION=4.9.2-2
9
+MAMBA_VERSION=0.7.4
10
# SHA256 for installers can be obtained from https://github.com/conda-forge/miniforge/releases
11
SHA256SUM="7a7bfaff87680298304a97ba69bcf92f66c810995a7155a2918b99fafb8ca1dc"
12
@@ -41,6 +42,8 @@ echo 'update_dependencies: false' >> ${CONDA_DIR}/.condarc
41
42
# avoid future changes to default channel_priority behavior
43
conda config --system --set channel_priority "flexible"
44
45
+time mamba install -y mamba==${MAMBA_VERSION}
46
+
47
echo "installing notebook env:"
48
cat /tmp/environment.yml
49
time mamba env create -p ${NB_PYTHON_PREFIX} -f /tmp/environment.yml
0 commit comments