Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sage
Path: blob/develop/.devcontainer/portability-fedora-42/devcontainer.json
7392 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
"containerEnv": {
14
"devcontainerId": "${devcontainerId}",
15
"UV_PROJECT_ENVIRONMENT": ".venv-${devcontainerId}"
16
},
17
"customizations": {
18
"vscode": {
19
"extensions": [
20
"ms-python.python"
21
]
22
}
23
}
24
}
25
26