Skip to content

Commit

Permalink
fix: avoid lab rebuild on server launch
Browse files Browse the repository at this point in the history
closes #52
  • Loading branch information
rokroskar committed Aug 23, 2019
1 parent 1f8fa56 commit 102d053
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 102d053

Please sign in to comment.