From 13c7da8fce95ac851e188860bb5edd7f7836d0cc Mon Sep 17 00:00:00 2001 From: Ayaz Salikhov Date: Sun, 13 Aug 2023 17:59:45 +0400 Subject: [PATCH] Temporarily pin jupyterlab and notebook in scipy-notebook --- scipy-notebook/Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scipy-notebook/Dockerfile b/scipy-notebook/Dockerfile index 6338f42e..714a7911 100644 --- a/scipy-notebook/Dockerfile +++ b/scipy-notebook/Dockerfile @@ -25,6 +25,10 @@ RUN apt-get update --yes && \ USER ${NB_UID} +# mamba downgrades this packages to previous major version, which causes issues +RUN echo 'jupyterlab >=4.0.4' >> "${CONDA_DIR}/conda-meta/pinned" && \ + echo 'notebook >=7.0.2' >> "${CONDA_DIR}/conda-meta/pinned" + # Install Python 3 packages RUN mamba install --yes \ 'altair' \