-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathdevcontainer.json
More file actions
25 lines (25 loc) · 910 Bytes
/
devcontainer.json
File metadata and controls
25 lines (25 loc) · 910 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/python
{
"name": "Cdrf Env",
"image": "mcr.microsoft.com/devcontainers/python:0-3.10",
// Use 'forwardPorts' to make a list of ports inside the container available locally.
"forwardPorts": [
8000
],
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"the-compiler.python-tox",
"ms-azuretools.vscode-docker",
"redhat.vscode-yaml",
"github.vscode-github-actions",
"pamaron.pytest-runner"
]
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}