Update devcontainer.json

This commit is contained in:
Eduard Prigoana 2026-02-05 18:47:36 +02:00 committed by GitHub
parent 67276ba88d
commit 90651fb434
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,20 +1,20 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine
{ {
"name": "Alpine Bun Dev Container", "name": "Alpine Bun Dev Container",
"image": "mcr.microsoft.com/devcontainers/base:alpine-3.22", "image": "alpine:latest",
"features": { "features": {
"ghcr.io/shyim/devcontainers-features/bun:0": {}, "ghcr.io/shyim/devcontainers-features/bun:0": {},
"ghcr.io/devcontainer-config/features/dot-config:3": {} "ghcr.io/devcontainer-config/features/dot-config:3": {}
}, },
"customizations": { "postCreateCommand": "apk add --no-cache git && bun --version",
"vscode": { "customizations": {
"settings": { "vscode": {
"terminal.integrated.sendKeybindingsToShell": true, "settings": {
"workbench.colorTheme": "Lilac" "terminal.integrated.sendKeybindingsToShell": true,
}, "workbench.colorTheme": "Lilac"
"extensions": ["shubham-saudolla.lilac"] },
} "extensions": [
}, "shubham-saudolla.lilac"
"postCreateCommand": "bun --version" ]
}
}
} }