From 82c66752db8f31bf6a3ed3d00fcab46c6e00c9b1 Mon Sep 17 00:00:00 2001 From: Chia-liang Kao Date: Sun, 21 Jul 2019 12:40:07 +0800 Subject: [PATCH 1/2] Bump notebook to 6.0.0 and jupyterlab to 1.0.2 --- base-notebook/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index 80a0e48e..a1362614 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -101,9 +101,9 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \ # Do all this in a single RUN command to avoid duplicating all of the # files across image layers when the permissions change RUN conda install --quiet --yes \ - 'notebook=5.7.8' \ + 'notebook=6.0.0' \ 'jupyterhub=1.0.0' \ - 'jupyterlab=1.0.1' && \ + 'jupyterlab=1.0.2' && \ conda clean --all -f -y && \ npm cache clean --force && \ jupyter notebook --generate-config && \ From 374207fad633ef72821c4d7433ab05a3a8c7a70e Mon Sep 17 00:00:00 2001 From: Travis CI Date: Sat, 27 Jul 2019 13:32:04 -0400 Subject: [PATCH 2/2] Update conda and jupyterlab --- base-notebook/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/base-notebook/Dockerfile b/base-notebook/Dockerfile index a1362614..998cf0bf 100644 --- a/base-notebook/Dockerfile +++ b/base-notebook/Dockerfile @@ -68,7 +68,7 @@ RUN mkdir /home/$NB_USER/work && \ # Install conda as jovyan and check the md5 sum provided on the download site ENV MINICONDA_VERSION=4.6.14 \ - CONDA_VERSION=4.7.5 + CONDA_VERSION=4.7.10 RUN cd /tmp && \ wget --quiet https://repo.continuum.io/miniconda/Miniconda3-${MINICONDA_VERSION}-Linux-x86_64.sh && \ @@ -103,7 +103,7 @@ RUN conda install --quiet --yes 'tini=0.18.0' && \ RUN conda install --quiet --yes \ 'notebook=6.0.0' \ 'jupyterhub=1.0.0' \ - 'jupyterlab=1.0.2' && \ + 'jupyterlab=1.0.4' && \ conda clean --all -f -y && \ npm cache clean --force && \ jupyter notebook --generate-config && \