Files
pythoncoder/.devcontainer/devcontainer.json
2026-01-30 09:18:15 +01:00

20 lines
359 B
JSON

{
"name": "Python 3",
"image": "python:3.11.14-alpine3.23",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
]
}
},
"postCreateCommand": "pip install --upgrade pip",
"forwardPorts": [],
"remoteUser": "root"
}