From 1d04163713a30f8acf034407c15ca4b70db342cc Mon Sep 17 00:00:00 2001 From: Katya Potapov Date: Fri, 29 Nov 2024 17:26:24 -0500 Subject: [PATCH 1/2] Update base image version - devcontainer, debian and python --- .devcontainer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 1174208462..87239ff43f 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/devcontainers/python:0-3.10 +FROM mcr.microsoft.com/devcontainers/python:1.0-3.11-bookworm COPY requirements.txt /tmp/ From af071885c506bb8c6c93d59ef29c2703ca17cac2 Mon Sep 17 00:00:00 2001 From: Katya Potapov Date: Fri, 29 Nov 2024 17:27:58 -0500 Subject: [PATCH 2/2] Add basic devcontainer extensions for working with python + jupyter --- .devcontainer/devcontainer.json | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 7b7928701a..939bbf7eff 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -17,5 +17,15 @@ }, "runArgs": [ "--shm-size=16g" - ] -} + ], + "customizations": { + "vscode": { + "extensions": [ + "ms-python.python", + "ms-python.vscode-pylance", + "ms-toolsai.jupyter", + "ms-azuretools.vscode-docker" + ] + } + } +} \ No newline at end of file