12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "Python 3.12",
- "build": {
- "context": "..",
- "dockerfile": "Dockerfile"
- },
- "features": {
- "ghcr.io/devcontainers/features/node:1": {
- "nodeGypDependencies": true,
- "version": "lts"
- },
- "ghcr.io/devcontainers-contrib/features/npm-package:1": {
- "package": "typescript",
- "version": "latest"
- },
- "ghcr.io/devcontainers/features/docker-in-docker:2": {
- "moby": true,
- "azureDnsAutoDetection": true,
- "installDockerBuildx": true,
- "version": "latest",
- "dockerDashComposeVersion": "v2"
- }
- },
- "customizations": {
- "vscode": {
- "extensions": [
- "ms-python.pylint",
- "GitHub.copilot",
- "ms-python.python"
- ]
- }
- },
- "postStartCommand": "./.devcontainer/post_start_command.sh",
- "postCreateCommand": "./.devcontainer/post_create_command.sh"
-
-
-
-
-
-
-
-
-
-
- }
|