-
Notifications
You must be signed in to change notification settings - Fork 379
Expand file tree
/
Copy pathdevcontainer-template.json
More file actions
36 lines (36 loc) · 1.19 KB
/
devcontainer-template.json
File metadata and controls
36 lines (36 loc) · 1.19 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
{
"id": "cpp",
"version": "4.0.0",
"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 13, Debian 12, Ubuntu 24.04, and Ubuntu 22.04 on local arm64/Apple Silicon):",
"proposals": [
"debian13",
"debian12",
"ubuntu24.04",
"ubuntu22.04"
],
"default": "debian13"
},
"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"
}
},
"platforms": ["C++"],
"optionalPaths": [
".github/*"
]
}