Update devcontainer.json
This commit is contained in:
parent
67276ba88d
commit
90651fb434
1 changed files with 18 additions and 18 deletions
|
|
@ -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",
|
||||
"image": "mcr.microsoft.com/devcontainers/base:alpine-3.22",
|
||||
"features": {
|
||||
"ghcr.io/shyim/devcontainers-features/bun:0": {},
|
||||
"ghcr.io/devcontainer-config/features/dot-config:3": {}
|
||||
},
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {
|
||||
"terminal.integrated.sendKeybindingsToShell": true,
|
||||
"workbench.colorTheme": "Lilac"
|
||||
},
|
||||
"extensions": ["shubham-saudolla.lilac"]
|
||||
}
|
||||
},
|
||||
"postCreateCommand": "bun --version"
|
||||
"name": "Alpine Bun Dev Container",
|
||||
"image": "alpine:latest",
|
||||
"features": {
|
||||
"ghcr.io/shyim/devcontainers-features/bun:0": {},
|
||||
"ghcr.io/devcontainer-config/features/dot-config:3": {}
|
||||
},
|
||||
"postCreateCommand": "apk add --no-cache git && bun --version",
|
||||
"customizations": {
|
||||
"vscode": {
|
||||
"settings": {
|
||||
"terminal.integrated.sendKeybindingsToShell": true,
|
||||
"workbench.colorTheme": "Lilac"
|
||||
},
|
||||
"extensions": [
|
||||
"shubham-saudolla.lilac"
|
||||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue