diff --git a/jupyter/build/plugins.Dockerfile b/jupyter/build/plugins.Dockerfile index c8f8045..0004de9 100644 --- a/jupyter/build/plugins.Dockerfile +++ b/jupyter/build/plugins.Dockerfile @@ -6,6 +6,7 @@ USER ${NB_UID} RUN mamba install --yes \ "jupyterlab-git" \ + "jupyterlab-link-share" \ && \ # Cleanup mamba clean --all -f -y && \ diff --git a/jupyter/build/pymodules.Dockerfile b/jupyter/build/pymodules.Dockerfile index 82da1dd..d4a703f 100644 --- a/jupyter/build/pymodules.Dockerfile +++ b/jupyter/build/pymodules.Dockerfile @@ -5,7 +5,9 @@ LABEL maintainer="Mark " USER $NB_UID RUN mamba install --yes \ - # Python packages + ## Jupyter extensions + "jupyter_server>=2.0.0" \ + ## Python packages # Scraping "beautifulsoup4" \ "requests" \