Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/.devcontainer/portability-centos-stream-9-standard/devcontainer.json
4013 views
1
// The command "tox -e update_docker_platforms"
2
// creates .devcontainer/portability-*-*/devcontainer.json
3
// from .devcontainer/portability-devcontainer.json.in
4
// See https://aka.ms/devcontainer.json for format details.
5
{
6
"name": "centos-stream-9-standard (≥ 8-core)",
7
"build": {
8
"dockerfile": "portability-Dockerfile",
9
// See tox.ini for definitions
10
"args": {
11
"SYSTEM_FACTOR": "centos-stream-9",
12
"PACKAGE_FACTOR": "standard",
13
"DOCKER_TARGET": "with-targets",
14
"DOCKER_TAG": "dev"
15
}
16
},
17
"containerEnv": {
18
"MAKE": "make -j4"
19
},
20
"onCreateCommand": ".devcontainer/onCreate.sh",
21
"updateContentCommand": ".devcontainer/portability-updateContent.sh",
22
"extensions": [
23
"ms-python.python"
24
]
25
}
26
27