From c07dc3fb29a08d525a4a657db5e9fd1a0c752e28 Mon Sep 17 00:00:00 2001 From: Dennis Eggen <3019773@stud.hs-mannheim.de> Date: Sun, 26 Oct 2025 13:25:58 +0100 Subject: [PATCH] python/.devcontainer/devcontainer.json aktualisiert --- python/.devcontainer/devcontainer.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/python/.devcontainer/devcontainer.json b/python/.devcontainer/devcontainer.json index a7149d6..445e6d9 100644 --- a/python/.devcontainer/devcontainer.json +++ b/python/.devcontainer/devcontainer.json @@ -1,5 +1,5 @@ { - "name": "Python 3.11 Dev Container (ohne requirements)", + "name": "Python 3.11 Dev Container (als vscode-User)", "dockerFile": "Dockerfile", "mounts": [ "source=${localWorkspaceFolder},target=/workspace,type=bind" @@ -13,5 +13,7 @@ "ms-python.python", "ms-python.vscode-pylance" ], - "postCreateCommand": "pip install --upgrade pip" + "postCreateCommand": "pip install --upgrade pip", + "remoteUser": "vscode", + "containerUser": "vscode" }