From 971153f4de70c128b539ef5276bc4f62b2f97db1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Loukota?= Date: Tue, 6 Jan 2026 09:40:27 +0100 Subject: [PATCH] fix: install Bun in Dockerfile for build scripts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build script was updated to use Bun (`bun scripts/canvas-a2ui-copy.ts`) but the Dockerfile was not updated to install Bun, causing Docker builds to fail with "bun: not found". 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 10c4f3614..8fc107f10 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,9 @@ FROM node:22-bookworm +# Install Bun (required for build scripts) +RUN curl -fsSL https://bun.sh/install | bash +ENV PATH="/root/.bun/bin:${PATH}" + RUN corepack enable WORKDIR /app