-
Notifications
You must be signed in to change notification settings - Fork 1
/
devcontainer.json
40 lines (40 loc) · 1.45 KB
/
devcontainer.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
38
39
40
{
"name": "gem5 Development Container",
"image": "ghcr.io/gem5/devcontainer:bootcamp-2024",
"hostRequirements": {
"cpus": 4,
"memory": "16gb",
"storage": "64gb"
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-pull-request-github",
"ms-python.debugpy",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.cpptools",
"ms-vscode.cpptools-extension-pack",
"ms-vscode.cpptools-themes",
"ms-vscode.makefile-tools",
"Tsinghua-Hexin-Joint-Institute.gem5-slicc",
"ms-python.black-formatter",
"marp-team.marp-vscode",
"hediet.vscode-drawio",
"ms-vsliveshare.vsliveshare",
"DavidAnson.vscode-markdownlint"
]
}
},
"features": {
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers/features/github-cli:1": {},
"ghcr.io/devcontainers-contrib/features/actionlint:1": {},
"ghcr.io/devcontainers-contrib/features/vscode-cli:1": {},
"ghcr.io/devcontainers/features/sshd:1": { "version": "latest" }
},
"onCreateCommand": "./.devcontainer/on_create.sh",
"postStartCommand": "./.devcontainer/post_start.sh"
}