forked from IMAP-Science-Operations-Center/imap_processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer.json
More file actions
31 lines (30 loc) · 771 Bytes
/
devcontainer.json
File metadata and controls
31 lines (30 loc) · 771 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
26
27
28
29
30
31
{
"name": "imap_processing",
"build": {
"dockerfile": "Dockerfile"
},
"features": {
"ghcr.io/devcontainers/features/desktop-lite:1": {
"version": "latest"
}, "ghcr.io/devcontainers/features/docker-in-docker:2": {
"version": "latest"
}
},
"forwardPorts": [6080],
"postCreateCommand": "poetry install",
"postStartCommand": ". $(poetry env info --path)/bin/activate",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
],
// Set *default* container specific settings.json values on container create.
"settings": {
// not using venvs? uncomment this
"python.defaultInterpreterPath": "/usr/local/bin/python"
// use the active venv
// "python.defaultInterpreterPath": ".venv/bin/python3"
}
}
}
}