@@ -80,13 +80,14 @@ RUN cd /tmp && \
80
80
/bin/bash Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
81
81
rm Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \
82
82
echo "conda ${CONDA_VERSION}" >> $CONDA_DIR/conda-meta/pinned && \
83
- $CONDA_DIR/bin/ conda config --system --prepend channels conda-forge && \
84
- $CONDA_DIR/bin/ conda config --system --set auto_update_conda false && \
85
- $CONDA_DIR/bin/ conda config --system --set show_channel_urls true && \
83
+ conda config --system --prepend channels conda-forge && \
84
+ conda config --system --set auto_update_conda false && \
85
+ conda config --system --set show_channel_urls true && \
86
86
if [ ! $PYTHON_VERSION = 'default' ]; then conda install --yes python=$PYTHON_VERSION; fi && \
87
87
conda list python | grep '^python ' | tr -s ' ' | cut -d '.' -f 1,2 | sed 's/$/.*/' >> $CONDA_DIR/conda-meta/pinned && \
88
- $CONDA_DIR/bin/conda install --quiet --yes conda && \
89
- $CONDA_DIR/bin/conda update --all --quiet --yes && \
88
+ conda install --quiet --yes conda && \
89
+ conda install --quiet --yes pip && \
90
+ conda update --all --quiet --yes && \
90
91
conda clean --all -f -y && \
91
92
rm -rf /home/$NB_USER/.cache/yarn && \
92
93
fix-permissions $CONDA_DIR && \
@@ -106,7 +107,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \
106
107
# Do all this in a single RUN command to avoid duplicating all of the
107
108
# files across image layers when the permissions change
108
109
RUN conda install --quiet --yes \
109
- 'notebook=6.0.2 ' \
110
+ 'notebook=6.0.3 ' \
110
111
'jupyterhub=1.1.0' \
111
112
'jupyterlab=1.2.5' && \
112
113
conda clean --all -f -y && \
0 commit comments