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 4ae1d3e commit 57156deCopy full SHA for 57156de
base-notebook/Dockerfile
@@ -109,6 +109,18 @@ RUN set -x && \
109
fix-permissions "${CONDA_DIR}" && \
110
fix-permissions "/home/${NB_USER}"
111
112
+# Using fixed version of mamba in arm, because the latest one has problems with arm under qemu
113
+# See: https://github.com/jupyter/docker-stacks/issues/1539
114
+RUN set -x && \
115
+ arch=$(uname -m) && \
116
+ if [ "${arch}" == "aarch64" ]; then \
117
+ mamba install --quiet --yes \
118
+ 'mamba<0.18' && \
119
+ mamba clean --all -f -y && \
120
+ fix-permissions "${CONDA_DIR}" && \
121
+ fix-permissions "/home/${NB_USER}"; \
122
+ fi;
123
+
124
# Install Jupyter Notebook, Lab, and Hub
125
# Generate a notebook server config
126
# Cleanup temporary files
0 commit comments