1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
- "name": "Anaconda (Python 3)",
- "build": {
- "context": "..",
- "dockerfile": "Dockerfile"
- },
- "features": {
- "ghcr.io/dhoeric/features/act:1": {},
- "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": "cd api && pip install -r requirements.txt",
- "postCreateCommand": "cd web && npm install"
-
-
-
-
-
-
-
-
-
-
- }
|