12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "name": "Python 3",
- "build": {
- "dockerfile": "Dockerfile",
- "context": "..",
- "args": {
-
-
-
- "VARIANT": "3.11-bookworm"
- }
- },
-
- "customizations": {
-
- "vscode": {
-
- "settings": {
- "python.defaultInterpreterPath": "/usr/local/bin/python",
- "python.linting.enabled": true,
- "python.formatting.blackPath": "/usr/local/py-utils/bin/black",
- "python.linting.mypyPath": "/usr/local/py-utils/bin/mypy"
- },
-
- "extensions": [
- "ms-python.python",
- "ms-python.vscode-pylance"
- ]
- }
- },
-
-
-
-
-
- "remoteUser": "vscode"
- }
|