From dd03a7e5cd7e0635dc82b064a9d03e09d5e37a2c Mon Sep 17 00:00:00 2001 From: Min RK Date: Wed, 6 Mar 2019 13:20:18 +0100 Subject: [PATCH] notebook 5.7.5 and conda to 4.6.7 --- base-notebook/Dockerfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 04fc63b8..82c929b3 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -60,16 +60,18 @@ RUN mkdir /home/$NB_USER/work && \ fix-permissions /home/$NB_USER # Install conda as jovyan and check the md5 sum provided on the download site -ENV MINICONDA_VERSION 4.5.11 +ENV MINICONDA_VERSION=4.5.12 \ + CONDA_VERSION=4.6.7 + RUN cd /tmp && \ wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \ - echo "e1045ee415162f944b6aebfe560b8fee *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \ + echo "866ae9dff53ad0874e1d1a60b1ad1ef8 *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \ /bin/bash Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \ rm Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \ $CONDA_DIR/bin/conda config --system --prepend channels conda-forge && \ $CONDA_DIR/bin/conda config --system --set auto_update_conda false && \ $CONDA_DIR/bin/conda config --system --set show_channel_urls true && \ - $CONDA_DIR/bin/conda install --quiet --yes conda="${MINICONDA_VERSION%.*}.*" && \ + $CONDA_DIR/bin/conda install --quiet --yes conda="${CONDA_VERSION%.*}.*" && \ $CONDA_DIR/bin/conda update --all --quiet --yes && \ conda clean -tipsy && \ rm -rf /home/$NB_USER/.cache/yarn && \ @@ -90,7 +92,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \ # Do all this in a single RUN command to avoid duplicating all of the # files across image layers when the permissions change RUN conda install --quiet --yes \ - 'notebook=5.7.2' \ + 'notebook=5.7.5' \ 'jupyterhub=0.9.4' \ 'jupyterlab=0.35.4' && \ conda clean -tipsy && \