From 102d053fcae0f9abeaff1bb9692b31a524da8ff3 Mon Sep 17 00:00:00 2001 From: Rok Roskar Date: Fri, 23 Aug 2019 12:02:09 +0200 Subject: [PATCH] fix: avoid lab rebuild on server launch closes #52 --- docker/base/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/base/Dockerfile b/docker/base/Dockerfile index ebaaefe3..2d6d9e34 100644 --- a/docker/base/Dockerfile +++ b/docker/base/Dockerfile @@ -44,11 +44,11 @@ COPY requirements.txt /tmp/requirements.txt RUN python3 -m pip install -U pip && \ pip install -r /tmp/requirements.txt && \ jupyter labextension update @jupyterlab/hub-extension --no-build && \ - jupyter labextension install @jupyterlab/git && \ - jupyter lab build && \ + jupyter labextension install @jupyterlab/git --no-build && \ jupyter labextension list && \ pip install jupyterlab-git && \ - jupyter serverextension enable --py jupyterlab_git + jupyter serverextension enable --py jupyterlab_git && \ + jupyter lab build # fix https://github.com/SwissDataScienceCenter/renku-jupyter/issues/14 RUN conda install gxx_linux-64