Skip to content

Commit

Permalink
Bump miniconda -> 4.8.2
Browse files Browse the repository at this point in the history
  • Loading branch information
romainx committed Mar 17, 2020
1 parent 862de14 commit 6bf5922
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions base-notebook/Dockerfile
Expand Up @@ -72,15 +72,15 @@ 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.7.12.1 \
MINICONDA_MD5=81c773ff87af5cfac79ab862942ab6b3 \
CONDA_VERSION=4.7.12
ENV MINICONDA_VERSION=4.8.2 \
MINICONDA_MD5=87e77f097f6ebb5127c77662dfc3165e \
CONDA_VERSION=4.8.2

RUN cd /tmp && \
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
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 && \
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh && \
echo "${MINICONDA_MD5} *Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
/bin/bash Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
rm Miniconda3-py37_${MINICONDA_VERSION}-Linux-x86_64.sh && \
echo "conda ${CONDA_VERSION}" >> $CONDA_DIR/conda-meta/pinned && \
conda config --system --prepend channels conda-forge && \
conda config --system --set auto_update_conda false && \
Expand Down

2 comments on commit 6bf5922

@gokceneraslan
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you mind updating conda to 4.8.3 because of this bug conda/conda#9681 ?

@romainx
Copy link
Collaborator Author

@romainx romainx commented on 6bf5922 May 2, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello, @gokceneraslan

Yes sure, however for the time being we do not update conda in place, we keep the version shipped with one of the miniconda distributions. The latest available Miniconda installer is 4.8.2. In the meantime if you are blocked by something you can consider updating conda either in the image or live in the container conda update conda.

Best

Please sign in to comment.