From da246268af794dc52aa37f66ebd2e26e89a7447d Mon Sep 17 00:00:00 2001 From: Darek Date: Thu, 18 Jun 2020 12:47:16 +0000 Subject: [PATCH] Upgrading miniconda to py38 --- base-notebook/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index cfa7dae7..b7f1ff96 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -76,14 +76,14 @@ RUN mkdir /home/$NB_USER/work && \ # Install conda as jovyan and check the md5 sum provided on the download site ENV MINICONDA_VERSION=4.8.2 \ - MINICONDA_MD5=87e77f097f6ebb5127c77662dfc3165e \ + MINICONDA_MD5=cbda751e713b5a95f187ae70b509403f \ CONDA_VERSION=4.8.2 WORKDIR /tmp -RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh && \ - echo "${MINICONDA_MD5} *Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \ - /bin/bash Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \ - rm Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh && \ +RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh && \ + echo "${MINICONDA_MD5} *Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \ + /bin/bash Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \ + rm Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh && \ echo "conda ${CONDA_VERSION}" >> $CONDA_DIR/conda-meta/pinned && \ conda config --system --prepend channels conda-forge && \ conda config --system --set auto_update_conda false && \ @@ -115,7 +115,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \ RUN conda install --quiet --yes \ 'notebook=6.0.3' \ 'jupyterhub=1.1.0' \ - 'jupyterlab=2.1.3' && \ + 'jupyterlab=2.1.4' && \ conda clean --all -f -y && \ npm cache clean --force && \ jupyter notebook --generate-config && \