From 500858a01301d083452e354a054ebd704c78c0c5 Mon Sep 17 00:00:00 2001 From: edurenye Date: Mon, 16 Sep 2019 15:21:47 +0200 Subject: [PATCH] Update Miniconda to 4.7.10 and conda to 4.7.12 --- base-notebook/Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 13406c49b3..018721ea1f 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -68,12 +68,13 @@ 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.6.14 \ - CONDA_VERSION=4.7.10 +ENV MINICONDA_VERSION=4.7.10 \ + MINICONDA_MD5=1c945f2b3335c7b2b15130b1b2dc5cf4 \ + CONDA_VERSION=4.7.12 RUN cd /tmp && \ wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \ - echo "718259965f234088d785cad1fbd7de03 *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \ + echo "${MINICONDA_MD5} *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 && \ echo "conda ${CONDA_VERSION}" >> $CONDA_DIR/conda-meta/pinned && \