From 90651fb4349153feab5a557ddc227110cb5b40a6 Mon Sep 17 00:00:00 2001 From: Eduard Prigoana Date: Thu, 5 Feb 2026 18:47:36 +0200 Subject: [PATCH] Update devcontainer.json --- .devcontainer/devcontainer.json | 36 ++++++++++++++++----------------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 5dcd5d5..d7967cd 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -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" + ] + } + } }