diff --git a/apps/vscode-cloud/Dockerfile b/apps/vscode-cloud/Dockerfile index 68730e3..c080cd9 100644 --- a/apps/vscode-cloud/Dockerfile +++ b/apps/vscode-cloud/Dockerfile @@ -75,6 +75,12 @@ RUN curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \ && apt-get install -y --no-install-recommends nodejs \ && rm -rf /var/lib/apt/lists/* +# ── Bun ─────────────────────────────────────────────────────────────────────── +# Installed system-wide (BUN_INSTALL=/usr/local) so it's on PATH for every user, +# same as the npm globals below via NPM_CONFIG_PREFIX. +RUN curl -fsSL https://bun.sh/install | BUN_INSTALL=/usr/local bash \ + && chmod -R a+rx /usr/local/bin/bun + # ── Global npm tools ────────────────────────────────────────────────────────── # AI coding CLIs + TypeScript + language servers for VS Code IntelliSense ENV NPM_CONFIG_PREFIX=/usr/local