Skip to content

Commit

Permalink
Revert "Remove mamba pin for aarch64"
Browse files Browse the repository at this point in the history
This reverts commit 62723b7.
  • Loading branch information
Ayaz Salikhov committed Feb 4, 2022
1 parent f7fbdf8 commit 21e4f1a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions base-notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,18 @@ RUN set -x && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"

# Using fixed version of mamba in arm, because the latest one has problems with arm under qemu
# See: https://github.com/jupyter/docker-stacks/issues/1539
RUN set -x && \
arch=$(uname -m) && \
if [ "${arch}" == "aarch64" ]; then \
mamba install --quiet --yes \
'mamba<0.18' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"; \
fi;

# Install Jupyter Notebook, Lab, and Hub
# Generate a notebook server config
# Cleanup temporary files
Expand Down

0 comments on commit 21e4f1a

Please sign in to comment.