-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdevcontainer.json
More file actions
30 lines (30 loc) · 985 Bytes
/
Copy pathdevcontainer.json
File metadata and controls
30 lines (30 loc) · 985 Bytes
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
{
"name": "github-copilot-assets-library",
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-22.04",
// Minimal features required for repository maintenance (markdown + scripts)
"features": {
"ghcr.io/devcontainers/features/git:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/github-cli:1": {
"version": "latest"
},
// Retain Node to run helper scripts like update-readme.js
"ghcr.io/devcontainers/features/node:1": {
"version": "lts"
}
},
"customizations": {
"vscode": {
"extensions": [
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"davidanson.vscode-markdownlint",
"ms-azuretools.vscode-azure-github-copilot"
]
}
},
"remoteUser": "vscode"
}