mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-16 22:42:57 +00:00
Upgrading miniconda to py38
This commit is contained in:
@@ -76,14 +76,14 @@ RUN mkdir /home/$NB_USER/work && \
|
||||
|
||||
# Install conda as jovyan and check the md5 sum provided on the download site
|
||||
ENV MINICONDA_VERSION=4.8.2 \
|
||||
MINICONDA_MD5=87e77f097f6ebb5127c77662dfc3165e \
|
||||
MINICONDA_MD5=cbda751e713b5a95f187ae70b509403f \
|
||||
CONDA_VERSION=4.8.2
|
||||
|
||||
WORKDIR /tmp
|
||||
RUN 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 && \
|
||||
RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh && \
|
||||
echo "${MINICONDA_MD5} *Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh" | md5sum -c - && \
|
||||
/bin/bash Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh -f -b -p $CONDA_DIR && \
|
||||
rm Miniconda3-py38_${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 && \
|
||||
@@ -115,7 +115,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \
|
||||
RUN conda install --quiet --yes \
|
||||
'notebook=6.0.3' \
|
||||
'jupyterhub=1.1.0' \
|
||||
'jupyterlab=2.1.3' && \
|
||||
'jupyterlab=2.1.4' && \
|
||||
conda clean --all -f -y && \
|
||||
npm cache clean --force && \
|
||||
jupyter notebook --generate-config && \
|
||||
|
Reference in New Issue
Block a user