-
Notifications
You must be signed in to change notification settings - Fork 892
Expand file tree
/
Copy pathmanifest.json
More file actions
107 lines (107 loc) · 1.76 KB
/
manifest.json
File metadata and controls
107 lines (107 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"version": "1.2.6",
"variants": [
"bookworm",
"bullseye",
"noble",
"jammy",
"focal"
],
"build": {
"latest": "bookworm",
"parent": {
"bookworm": "base-debian",
"bullseye": "base-debian",
"noble": "base-ubuntu",
"jammy": "base-ubuntu",
"focal": "base-ubuntu"
},
"rootDistro": "debian",
"architectures": {
"bookworm": [
"linux/amd64",
"linux/arm64"
],
"bullseye": [
"linux/amd64",
"linux/arm64"
],
"noble": [
"linux/amd64",
"linux/arm64"
],
"jammy": [
"linux/amd64",
"linux/arm64"
],
"focal": [
"linux/amd64"
]
},
"tags": [
"cpp:${VERSION}-${VARIANT}"
],
"variantTags": {
"bookworm": [
"cpp:${VERSION}-debian-12",
"cpp:${VERSION}-debian12",
"cpp:${VERSION}-debian",
"cpp:${VERSION}"
],
"bullseye": [
"cpp:${VERSION}-debian-11",
"cpp:${VERSION}-debian11",
"cpp:${VERSION}"
],
"noble": [
"cpp:${VERSION}-ubuntu-24.04",
"cpp:${VERSION}-ubuntu24.04"
],
"jammy": [
"cpp:${VERSION}-ubuntu-22.04",
"cpp:${VERSION}-ubuntu22.04"
],
"focal": [
"cpp:${VERSION}-ubuntu-20.04",
"cpp:${VERSION}-ubuntu20.04",
"cpp:${VERSION}-ubuntu"
]
}
},
"dependencies": {
"image": "buildpack-deps:${VARIANT}-curl",
"imageLink": "https://hub.docker.com/_/buildpack-deps",
"apt": [
"build-essential",
"cmake",
"cppcheck",
"valgrind",
"clang",
"lldb",
"llvm",
"gdb",
"tar",
"curl",
"zip",
"unzip",
"pkg-config",
"bash-completion",
"ninja-build"
],
"git": {
"Oh My Zsh!": "/home/vscode/.oh-my-zsh",
"vcpkg": "/usr/local/vcpkg"
},
"languages": {
"GCC": {
"cgIgnore": true
},
"Clang": {
"cgIgnore": true
}
},
"other": {
"git": {}
}
}
}