From 8ad46e3cebdd1dcc9ca12b7de5a4f306d48e88c0 Mon Sep 17 00:00:00 2001 From: cdmikechen Date: Sat, 18 Nov 2023 21:53:33 +0800 Subject: [PATCH] update jupyter version --- .github/workflows/jupyter_images.yml | 2 -- dev-support/docker-images/jupyter/Dockerfile | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/jupyter_images.yml b/.github/workflows/jupyter_images.yml index 6e88a0f97..f8ec68761 100644 --- a/.github/workflows/jupyter_images.yml +++ b/.github/workflows/jupyter_images.yml @@ -22,8 +22,6 @@ jobs: jupyter-images: runs-on: ubuntu-latest timeout-minutes: 240 - env: - SUBMARINE_VERSION: 0.9.0-SNAPSHOT steps: - uses: actions/checkout@v3 - name: Build submarine jupyter diff --git a/dev-support/docker-images/jupyter/Dockerfile b/dev-support/docker-images/jupyter/Dockerfile index 131048b52..39bde9eb8 100644 --- a/dev-support/docker-images/jupyter/Dockerfile +++ b/dev-support/docker-images/jupyter/Dockerfile @@ -96,8 +96,8 @@ RUN wget --quiet https://repo.continuum.io/miniconda/Miniconda3-py311_${MINICOND conda init bash && \ source ~/.bashrc && conda activate && \ # it is used for jupyter lab build - conda install --freeze-installed -c conda-forge nodejs==14.20.1 jupyterlab==3.5.2 jupyterlab-git==0.41.0 && \ - pip install cvxpy==1.2.2 && \ + conda install --freeze-installed -c conda-forge nodejs jupyterlab==4.0.8 jupyterlab-git==0.44.0 && \ + conda install --freeze-installed -c conda-forge cvxpy && \ jupyter lab build && \ # remove node_modules rm -rf /home/$NB_USER/.cache/yarn && \