Skip to content

Commit 0826489

Browse files
authored
Merge pull request #938 from edurenye/conda-4-7-12
Update Miniconda to 4.7.10 and conda to 4.7.12
2 parents 1386e20 + 500858a commit 0826489

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

base-notebook/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,13 @@ RUN mkdir /home/$NB_USER/work && \
6868
fix-permissions /home/$NB_USER
6969

7070
# Install conda as jovyan and check the md5 sum provided on the download site
71-
ENV MINICONDA_VERSION=4.6.14 \
72-
CONDA_VERSION=4.7.10
71+
ENV MINICONDA_VERSION=4.7.10 \
72+
MINICONDA_MD5=1c945f2b3335c7b2b15130b1b2dc5cf4 \
73+
CONDA_VERSION=4.7.12
7374

7475
RUN cd /tmp && \
7576
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
76-
echo "718259965f234088d785cad1fbd7de03 *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
77+
echo "${MINICONDA_MD5} *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
7778
/bin/bash Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
7879
rm Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
7980
echo "conda ${CONDA_VERSION}" >> $CONDA_DIR/conda-meta/pinned && \

0 commit comments

Comments
 (0)