forked from devcontainers/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
43 lines (43 loc) · 1.36 KB
/
devcontainer-template.json
File metadata and controls
43 lines (43 loc) · 1.36 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
{
"id": "python",
"version": "5.0.0",
"name": "Python 3",
"description": "Develop Python 3 applications.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/python",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Python version (use -bookworm, or -bullseye variants on local arm64/Apple Silicon):",
"proposals": [
"3-trixie",
"3.14-trixie",
"3.13-trixie",
"3.12-trixie",
"3.11-trixie",
"3.10-trixie",
"3.9-trixie",
"3-bookworm",
"3.14-bookworm",
"3.13-bookworm",
"3.12-bookworm",
"3.11-bookworm",
"3.10-bookworm",
"3.9-bookworm",
"3-bullseye",
"3.14-bullseye",
"3.13-bullseye",
"3.12-bullseye",
"3.11-bullseye",
"3.10-bullseye",
"3.9-bullseye"
],
"default": "3.14-trixie"
}
},
"platforms": ["Python"],
"optionalPaths": [
".github/*"
]
}