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