Update devcontainer.json to include nodejs and npm

Added nodejs and npm installation to postCreateCommand.
This commit is contained in:
Eduard Prigoana 2026-02-05 18:52:53 +02:00 committed by GitHub
parent 9ac90d8fab
commit bbcbf0a8d2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,18 +1,20 @@
{ {
"name": "Alpine Bun Dev Container", "name": "Alpine Bun Dev Container",
"image": "alpine:latest", "image": "alpine:latest",
"features": { "postCreateCommand": "apk add --no-cache git nodejs npm && bun --version",
"ghcr.io/shyim/devcontainers-features/bun:0": {}, "features": {
"ghcr.io/devcontainer-config/features/dot-config:3": {} "ghcr.io/shyim/devcontainers-features/bun:0": {},
}, "ghcr.io/devcontainer-config/features/dot-config:3": {}
"postCreateCommand": "apk add --no-cache git && bun --version", },
"customizations": { "customizations": {
"vscode": { "vscode": {
"settings": { "settings": {
"terminal.integrated.sendKeybindingsToShell": true, "terminal.integrated.sendKeybindingsToShell": true,
"workbench.colorTheme": "Lilac" "workbench.colorTheme": "Lilac"
}, },
"extensions": ["shubham-saudolla.lilac"] "extensions": [
} "shubham-saudolla.lilac"
]
} }
}
} }