Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/.devcontainer/portability-fedora-42/devcontainer.json
4052 views
1
// See https://aka.ms/devcontainer.json for format details.
2
{
3
"name": "fedora-42",
4
"image": "fedora:42",
5
"onCreateCommand": ".devcontainer/onCreate-meson.sh || true",
6
"features": {
7
"ghcr.io/devcontainers/features/git": {},
8
"ghcr.io/devcontainers/features/python:1": {},
9
"../uv": {
10
"version": "latest"
11
}
12
},
13
"customizations": {
14
"vscode": {
15
"extensions": [
16
"ms-python.python"
17
]
18
}
19
}
20
}
21
22