Update Dockerfile
Browse files- 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 |
-
|
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
|