-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
49 lines (49 loc) · 1.6 KB
/
devcontainer-template.json
File metadata and controls
49 lines (49 loc) · 1.6 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
44
45
46
47
48
49
{
"id": "cpp",
"version": "3.0.3",
"name": "C++",
"description": "Develop C++ applications on Linux. Includes Debian C++ build tools.",
"documentationURL": "https://github.com/devcontainers/templates/tree/main/src/cpp",
"publisher": "Dev Container Spec Maintainers",
"licenseURL": "https://github.com/devcontainers/templates/blob/main/LICENSE",
"options": {
"imageVariant": {
"type": "string",
"description": "Debian / Ubuntu version (use Debian 12, Debian 11, Ubuntu 24.04, and Ubuntu 22.04 on local arm64/Apple Silicon):",
"proposals": [
"debian-12",
"debian-11",
"ubuntu-24.04",
"ubuntu-22.04",
"ubuntu-20.04"
],
"default": "debian-11"
},
"reinstallCmakeVersionFromSource": {
"type": "string",
"description": "Install CMake version different from what base image has already installed.",
"proposals": [
"none",
"3.21.5",
"3.22.2"
],
"default": "none"
},
"reinstallGccVersionFromSource": {
"type": "string",
"description": "Install GCC version different from what base image has already installed.",
"proposals": [
"none",
"15.1.0",
"14.2.0",
"14.1.0",
"13.3.0"
],
"default": "8.1.0"
}
},
"platforms": ["C++"],
"optionalPaths": [
".github/*"
]
}