From 4cac637ed84884be860f463344f557586a9a80b3 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Mon, 28 May 2018 11:51:43 -0700 Subject: [PATCH 1/2] Upgrade to Miniconda 4.5.1 --- base-notebook/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index d1e6b262..80672a8d 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -61,10 +61,10 @@ 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.4.10 +ENV MINICONDA_VERSION 4.5.1 RUN cd /tmp && \ wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \ - echo "bec6203dbb2f53011e974e9bf4d46e93 *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \ + echo "0c28787e3126238df24c5d4858bd0744 *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 && \ From 8b3661bea70f20140aa7e8f301ffb993256b0b16 Mon Sep 17 00:00:00 2001 From: John Kirkham Date: Mon, 28 May 2018 11:51:44 -0700 Subject: [PATCH 2/2] Upgrade to conda 4.5.4 --- base-notebook/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 80672a8d..d3da61b6 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -70,6 +70,7 @@ RUN cd /tmp && \ $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=4.5.4 && \ $CONDA_DIR/bin/conda update --all --quiet --yes && \ conda clean -tipsy && \ rm -rf /home/$NB_USER/.cache/yarn && \