Update Dockerfile

This commit is contained in:
Madiator2011 2024-08-06 15:25:56 +02:00 committed by GitHub
parent 37621ba815
commit 9461b994e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,11 +26,14 @@ RUN apt-get update --yes && \
RUN pip install --upgrade --no-cache-dir pip
COPY ms-toolsai.jupyter-2024.7.0.vsix /tmp/ms-toolsai.jupyter-2024.7.0.vsix
# Install code-server and extensions
RUN curl -fsSL https://code-server.dev/install.sh | sh && \
code-server --install-extension ms-python.python && \
code-server --install-extension ms-toolsai.jupyter && \
code-server --install-extension /tmp/ms-toolsai.jupyter-2024.7.0.vsix && \
code-server --install-extension ms-toolsai.vscode-jupyter-powertoys
RUN rm /tmp/ms-toolsai.jupyter-2024.7.0.vsix
# Pre-install Jupyter kernel and OhMyRunPod
RUN pip install ipykernel && \