File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -67,17 +67,18 @@ RUN mkdir /home/$NB_USER/work && \
67
67
68
68
# Install conda as jovyan and check the md5 sum provided on the download site
69
69
ENV MINICONDA_VERSION=4.5.12 \
70
- CONDA_VERSION=4.6.7
70
+ CONDA_VERSION=4.6.14
71
71
72
72
RUN cd /tmp && \
73
73
wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
74
74
echo "866ae9dff53ad0874e1d1a60b1ad1ef8 *Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
75
75
/bin/bash Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
76
76
rm Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
77
+ echo "conda ${CONDA_VERSION}" >> $CONDA_DIR/conda-meta/pinned && \
77
78
$CONDA_DIR/bin/conda config --system --prepend channels conda-forge && \
78
79
$CONDA_DIR/bin/conda config --system --set auto_update_conda false && \
79
80
$CONDA_DIR/bin/conda config --system --set show_channel_urls true && \
80
- $CONDA_DIR/bin/conda install --quiet --yes conda= "${CONDA_VERSION%.*}.*" && \
81
+ $CONDA_DIR/bin/conda install --quiet --yes conda && \
81
82
$CONDA_DIR/bin/conda update --all --quiet --yes && \
82
83
conda list python | grep '^python ' | tr -s ' ' | cut -d '.' -f 1,2 | sed 's/$/.*/' >> $CONDA_DIR/conda-meta/pinned && \
83
84
conda clean --all -f -y && \
You can’t perform that action at this time.
0 commit comments