-
Notifications
You must be signed in to change notification settings - Fork 29
/
.devcontainer.json
36 lines (36 loc) · 1.03 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
{
"name": "CCF Samples",
"image": "ghcr.io/microsoft/ccf/app/dev/virtual:ccf-5.0.0",
"customizations": {
"vscode": {
"extensions": [
"ms-vscode.cpptools",
"vsls-contrib.codetour",
"esbenp.prettier-vscode",
"timonwong.shellcheck",
"github.vscode-pull-request-github"
],
"settings": {
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
}
}
}
},
"postStartCommand": "scripts/devContainer_OnStart.sh",
"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {
"version": "latest"
},
"ghcr.io/devcontainers/features/node:1": {
"version": "16",
"nodeGypDependencies": true
},
"ghcr.io/devcontainers/features/powershell:1": {
"modules": "Az.Resources, Microsoft.Graph.Authentication, Microsoft.Graph.Applications"
},
"ghcr.io/rchaganti/vsc-devcontainer-features/azurebicep:1": {}
}
}