pythonTest/python/.devcontainer/devcontainer.json

20 lines
500 B
JSON

{
"name": "Python 3.11 Dev Container (als vscode-User)",
"dockerFile": "Dockerfile",
"mounts": [
"source=${localWorkspaceFolder},target=/workspace,type=bind"
],
"settings": {
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.provider": "black"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance"
],
"postCreateCommand": "pip install --upgrade pip",
"remoteUser": "vscode",
"containerUser": "vscode"
}