From 62723b7d46d11eb4f9848d286876de0192c4a60a Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Wed, 2 Feb 2022 15:18:35 +0100 Subject: [PATCH] Remove mamba pin for aarch64 --- base-notebook/Dockerfile | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index e27a58e7..7b884e48 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -121,18 +121,6 @@ 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