python/.devcontainer/devcontainer.json aktualisiert

feature/interestingPoints
Dennis Eggen 2025-10-26 13:25:58 +01:00
parent aa492b70c9
commit c07dc3fb29
1 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{ {
"name": "Python 3.11 Dev Container (ohne requirements)", "name": "Python 3.11 Dev Container (als vscode-User)",
"dockerFile": "Dockerfile", "dockerFile": "Dockerfile",
"mounts": [ "mounts": [
"source=${localWorkspaceFolder},target=/workspace,type=bind" "source=${localWorkspaceFolder},target=/workspace,type=bind"
@ -13,5 +13,7 @@
"ms-python.python", "ms-python.python",
"ms-python.vscode-pylance" "ms-python.vscode-pylance"
], ],
"postCreateCommand": "pip install --upgrade pip" "postCreateCommand": "pip install --upgrade pip",
"remoteUser": "vscode",
"containerUser": "vscode"
} }