We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c6232d commit a9806d2Copy full SHA for a9806d2
base-notebook/Dockerfile
@@ -71,7 +71,7 @@ RUN cd /tmp && \
71
$CONDA_DIR/bin/conda config --system --set show_channel_urls true && \
72
$CONDA_DIR/bin/conda install --quiet --yes conda="${MINICONDA_VERSION%.*}.*" && \
73
$CONDA_DIR/bin/conda update --all --quiet --yes && \
74
- conda list python | grep '^python ' | tr -s ' ' | cut -d ' ' -f 1,2 >> $CONDA_DIR/conda-meta/pinned && \
+ conda list python | grep '^python ' | tr -s ' ' | cut -d '.' -f 1,2 | sed 's/$/.*/' >> $CONDA_DIR/conda-meta/pinned && \
75
conda clean -tipsy && \
76
rm -rf /home/$NB_USER/.cache/yarn && \
77
fix-permissions $CONDA_DIR && \
0 commit comments