From 5925e00372a907e10d5e3a2b7f9809d36cb6357b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20M=2E=20Thi=C3=A9ry?= Date: Thu, 14 Jan 2021 21:56:40 +0100 Subject: [PATCH] Don't rebuild jupyterlab Presumably not needed anymore now that we are (?) using JupyterLab 3.0 --- Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Dockerfile b/Dockerfile index de8a051..919f02a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,14 +71,14 @@ RUN for REPO in \ # Enable the Visual Studio proxy extension in notebook and lab # Taken from https://github.com/betatim/vscode-binder/blob/master/postBuild RUN jupyter serverextension enable --py jupyter_server_proxy -RUN jupyter labextension install @jupyterlab/server-proxy --nobuild +RUN jupyter labextension install @jupyterlab/server-proxy #RUN code-server --install-extension ms-python.python # Install unpackaged jupyterlab extensions -RUN jupyter labextension install @wallneradam/run_all_buttons --nobuild +RUN jupyter labextension install @wallneradam/run_all_buttons -# Force jupyterlab rebuild (see https://github.com/jupyterlab/jupyterlab/issues/4930) -RUN jupyter lab build && \ - jupyter lab clean && \ - jlpm cache clean && \ - npm cache clean --force +# # Force jupyterlab rebuild (see https://github.com/jupyterlab/jupyterlab/issues/4930) +# RUN jupyter lab build && \ +# jupyter lab clean && \ +# jlpm cache clean && \ +# npm cache clean --force -- GitLab