autoBIGS.engine/.devcontainer/devcontainer.json

31 lines
869 B
JSON
Raw Normal View History

// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2025-01-17 21:31:38 +00:00
// README at: https://github.com/devcontainers/templates/tree/main/src/miniconda
{
2025-01-17 21:31:38 +00:00
"name": "Miniconda (Python 3)",
"build": {
"context": "..",
"dockerfile": "Dockerfile"
},
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [],
// Use 'postCreateCommand' to run commands after the container is created.
2025-01-17 21:31:38 +00:00
// "postCreateCommand": "python --version",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"mechatroner.rainbow-csv"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}