mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
Merge branch 'master' into asalikhov/ubuntu_focal
This commit is contained in:
@@ -13,6 +13,9 @@ ARG NB_USER="jovyan"
|
||||
ARG NB_UID="1000"
|
||||
ARG NB_GID="100"
|
||||
|
||||
# Fix DL4006
|
||||
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
||||
|
||||
USER root
|
||||
|
||||
# Install all OS dependencies for notebook server that starts but lacks all
|
||||
@@ -76,8 +79,8 @@ 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-py37_${MINICONDA_VERSION}-Linux-x86_64.sh && \
|
||||
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 && \
|
||||
@@ -137,3 +140,5 @@ RUN fix-permissions /etc/jupyter/
|
||||
|
||||
# Switch back to jovyan to avoid accidental container runs as root
|
||||
USER $NB_UID
|
||||
|
||||
WORKDIR $HOME
|
||||
|
Reference in New Issue
Block a user