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 f7fbdf8 commit 21e4f1aCopy full SHA for 21e4f1a
base-notebook/Dockerfile
@@ -121,6 +121,18 @@ RUN set -x && \
121
fix-permissions "${CONDA_DIR}" && \
122
fix-permissions "/home/${NB_USER}"
123
124
+# Using fixed version of mamba in arm, because the latest one has problems with arm under qemu
125
+# See: https://github.com/jupyter/docker-stacks/issues/1539
126
+RUN set -x && \
127
+ arch=$(uname -m) && \
128
+ if [ "${arch}" == "aarch64" ]; then \
129
+ mamba install --quiet --yes \
130
+ 'mamba<0.18' && \
131
+ mamba clean --all -f -y && \
132
+ fix-permissions "${CONDA_DIR}" && \
133
+ fix-permissions "/home/${NB_USER}"; \
134
+ fi;
135
+
136
# Install Jupyter Notebook, Lab, and Hub
137
# Generate a notebook server config
138
# Cleanup temporary files
0 commit comments