ar08 commited on
Commit
998f4af
·
verified ·
1 Parent(s): 8a2ad7f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -85,9 +85,8 @@ USER user
85
 
86
  # Python packages
87
  RUN --mount=target=requirements.txt,source=requirements.txt \
88
- pip install --no-cache-dir --upgrade -r requirements.txt \
89
- jupyter labextension install @krassowski/jupyterlab-lsp
90
-
91
 
92
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
93
  COPY --chown=user . $HOME/app
 
85
 
86
  # Python packages
87
  RUN --mount=target=requirements.txt,source=requirements.txt \
88
+ pip install --no-cache-dir --upgrade -r requirements.txt
89
+ RUN jupyter labextension install @krassowski/jupyterlab-lsp
 
90
 
91
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
92
  COPY --chown=user . $HOME/app