From 9441d4462de5e2ed6e33b00b47dc54679e521f17 Mon Sep 17 00:00:00 2001 From: Darek Date: Sun, 5 Jul 2020 14:55:37 +0000 Subject: [PATCH] Upgrading based Ubuntu, miniconda and jupyterlab --- base-notebook/Dockerfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index b7f1ff96..79daac65 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -4,7 +4,8 @@ # Ubuntu 20.04 (focal) # https://hub.docker.com/_/ubuntu/?tab=tags&name=focal # OS/ARCH: linux/amd64 -ARG ROOT_CONTAINER=ubuntu:focal-20200423@sha256:238e696992ba9913d24cfc3727034985abd136e08ee3067982401acdc30cbf3f +ARG ROOT_CONTAINER=ubuntu:focal-20200606@sha256:93fd0705706e5bdda6cc450b384d8d5afb18fecc19e054fe3d7a2c8c2aeb2c83 + ARG BASE_CONTAINER=$ROOT_CONTAINER FROM $BASE_CONTAINER @@ -75,9 +76,9 @@ RUN mkdir /home/$NB_USER/work && \ fix-permissions /home/$NB_USER # Install conda as jovyan and check the md5 sum provided on the download site -ENV MINICONDA_VERSION=4.8.2 \ - MINICONDA_MD5=cbda751e713b5a95f187ae70b509403f \ - CONDA_VERSION=4.8.2 +ENV MINICONDA_VERSION=4.8.3 \ + MINICONDA_MD5=d63adf39f2c220950a063e0529d4ff74 \ + CONDA_VERSION=4.8.3 WORKDIR /tmp RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py38_${MINICONDA_VERSION}-Linux-x86_64.sh && \ @@ -115,7 +116,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.4' && \ + 'jupyterlab=2.1.5' && \ conda clean --all -f -y && \ npm cache clean --force && \ jupyter notebook --generate-config && \