Skip to content

Commit dc97447

Browse files
authored
Merge pull request #1047 from romainx/bump_conda
Bump miniconda -> 4.8.2
2 parents 862de14 + 6bf5922 commit dc97447

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

base-notebook/Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ RUN mkdir /home/$NB_USER/work && \
7272
fix-permissions /home/$NB_USER
7373

7474
# Install conda as jovyan and check the md5 sum provided on the download site
75-
ENV MINICONDA_VERSION=4.7.12.1 \
76-
MINICONDA_MD5=81c773ff87af5cfac79ab862942ab6b3 \
77-
CONDA_VERSION=4.7.12
75+
ENV MINICONDA_VERSION=4.8.2 \
76+
MINICONDA_MD5=87e77f097f6ebb5127c77662dfc3165e \
77+
CONDA_VERSION=4.8.2
7878

7979
RUN cd /tmp && \
80-
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
81-
echo "${MINICONDA_MD5} *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
82-
/bin/bash Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
83-
rm Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
80+
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh && \
81+
echo "${MINICONDA_MD5} *Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
82+
/bin/bash Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
83+
rm Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh && \
8484
echo "conda ${CONDA_VERSION}" >> $CONDA_DIR/conda-meta/pinned && \
8585
conda config --system --prepend channels conda-forge && \
8686
conda config --system --set auto_update_conda false && \

0 commit comments

Comments
 (0)