mirror of
https://github.com/coder/coder.git
synced 2026-06-04 13:38:21 +00:00
33b9487899
This change allows proper unmarshaling of `devcontainer.json` and will no longer break EnvInfoer or the Web Terminal. Fixes coder/internal#556
13 lines
334 B
JSON
13 lines
334 B
JSON
{
|
|
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye",
|
|
"features": {
|
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {}
|
|
},
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": ["mads-hartmann.bash-ide-vscode", "dbaeumer.vscode-eslint"]
|
|
}
|
|
},
|
|
"postCreateCommand": "npm install -g @devcontainers/cli"
|
|
}
|