blob: 9b39524e82c259a217e008c0895f10df959b0b5e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
// Conda requires lots of memory to resolve our environment
"hostRequirements": {
"memory": "8gb"
},
// More info about Features: https://containers.dev/features
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {},
"onCreateCommand": ".devcontainer/setup.sh",
"postCreateCommand": "",
"customizations": {
"vscode": {
"extensions": [
"ms-python.python"
],
"settings": {}
}
}
}
|