forked from conda/conda
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.devcontainer.json
31 lines (27 loc) · 889 Bytes
/
.devcontainer.json
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
26
27
28
29
30
31
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.194.3/containers/python-3
{
"name": "Linux / Python 3.9",
"image": "ghcr.io/conda/conda-ci:main-linux-python3.9",
"containerEnv": {
"RUNNING_ON_DEVCONTAINER": "1"
},
// Set *default* container specific settings.json values on container create.
"settings": {
"python.pythonPath": "/opt/conda/bin/python",
"terminal.integrated.profiles.linux": {
"Conda Bash": {
"path": "/bin/bash",
"args": ["--rcfile", "/home/test_user/.bashrc"]
}
},
"terminal.integrated.defaultProfile.linux": "Conda Bash"
},
"extensions": [
"ms-python.python",
"ms-python.vscode-pylance",
"eamodio.gitlens"
],
"postAttachCommand": ["/bin/bash", "/workspaces/conda/dev/docker.bashrc"],
"remoteUser": "test_user"
}