Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
FROM dclong/python-nodejs
# GIT: https://github.com/legendu-net/docker-python-nodejs.git

RUN pip3 install nbdime jinja2 nbconvert "jupyterlab>=2.1.0,<3.6.0" \
jupyterlab_widgets ipywidgets \
RUN pip3 install --break-system-packages \
nbdime jinja2 nbconvert "jupyterlab>=2.1.0,<4.4.0" \
jupyterlab_widgets ipywidgets jupyterlab_myst \
jupyterlab-lsp python-lsp-server[all] \
jupyterlab-code-formatter \
jupyterlab_vim \
jupyter-resource-usage \
jupyter_ai \
&& jupyter labextension disable @axlair/jupyterlab_vim \
&& /scripts/sys/purge_cache.sh \
&& npm cache clean --force
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

docker pull dclong/jupyter-nodejs:next
docker pull dclong/python-nodejs:next
docker build -t dclong/jupyterlab:next .