From 535a67a695c7c6cabf769b9ffd6f08c38b09eaba Mon Sep 17 00:00:00 2001 From: Cian Johnston Date: Wed, 11 Jan 2023 22:24:41 +0000 Subject: [PATCH] fix: update jupyter versions (#192) --- images/jupyter/Dockerfile.centos | 6 +++--- images/jupyter/Dockerfile.ubuntu | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/images/jupyter/Dockerfile.centos b/images/jupyter/Dockerfile.centos index d1b11a7..29c9268 100644 --- a/images/jupyter/Dockerfile.centos +++ b/images/jupyter/Dockerfile.centos @@ -10,9 +10,9 @@ RUN dnf install --assumeyes \ # Install jupyter RUN python3 -m pip install --upgrade pip && \ pip3 install --upgrade setuptools && \ - pip3 install jupyter-core==4.7.1 && \ - pip3 install jupyterlab && \ - pip3 install notebook + pip3 install jupyterlab==3.2.9 && \ + pip3 install jupyter-core==4.6.3 && \ + pip3 install notebook==6.4.10 # Set back to coder user USER coder diff --git a/images/jupyter/Dockerfile.ubuntu b/images/jupyter/Dockerfile.ubuntu index 2104806..022815d 100644 --- a/images/jupyter/Dockerfile.ubuntu +++ b/images/jupyter/Dockerfile.ubuntu @@ -4,9 +4,9 @@ FROM codercom/enterprise-base:ubuntu USER root # Install jupyter -RUN pip3 install jupyter-core==4.11.1 && \ - pip3 install jupyterlab==3.4.3 && \ - pip3 install notebook==6.4.12 +RUN pip3 install jupyterlab==3.5.2 && \ + pip3 install jupyter-core==5.1.3 && \ + pip3 install notebook==6.5.2 # Set back to coder user USER coder