-
Notifications
You must be signed in to change notification settings - Fork 294
/
Copy pathdevcontainer-template.json
37 lines (37 loc) · 1.22 KB
/
devcontainer-template.json
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
{
"id": "cpp",
"version": "3.0.2",
"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"
}
},
"platforms": ["C++"],
"optionalPaths": [
".github/*"
]
}