ar08 commited on
Commit
8a2ad7f
·
verified ·
1 Parent(s): 5a334a6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -85,7 +85,9 @@ 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
 
90
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
91
  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
+ 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