fix: update jupyter versions (#192)

This commit is contained in:
Cian Johnston 2023-01-11 22:24:41 +00:00 committed by GitHub
parent a17e3b6696
commit 535a67a695
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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

View File

@ -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