forked from Azure/bicep-registry-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdevcontainer.json
31 lines (31 loc) · 1.16 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
{
"name": "Ubuntu",
"image": "mcr.microsoft.com/devcontainers/javascript-node:0-18-bullseye",
"customizations": {
"vscode": {
"extensions": [
"cschleiden.vscode-github-actions",
"esbenp.prettier-vscode",
"GitHub.copilot",
"github.vscode-pull-request-github",
"microsoft-dciborow.align-bicep",
"ms-azuretools.vscode-bicep",
"ms-vsliveshare.vsliveshare",
"ms-vscode-remote.remote-containers",
"zokugun.explicit-folding",
"GitHub.copilot-labs"
]
}
},
"postCreateCommand": "npm install -g prettier && dotnet tool install -g Azure.Bicep.RegistryModuleTool && pwsh -C Install-Module Az.Accounts -Repository PSGallery -Force && pwsh -C Install-Module Az.Resources -Repository PSGallery -Force && pwsh -C Install-Module Az.KeyVault -Repository PSGallery -Force",
"postStartCommand": "az bicep install",
"remoteEnv": {
"PATH": "${containerEnv:PATH}:/home/node/.dotnet/tools:/home/node/.azure/bin"
},
"features": {
"azure-cli": "latest",
"dotnet": "8.0",
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers/features/powershell:1": {}
}
}