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