From 026a105e12f73dfd6a64cc9982f7127ea30508aa Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sat, 18 Apr 2026 07:41:14 +0200 Subject: [PATCH] fix: install bun build deps --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 94399d3..ef1acd7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ ENV CGO_ENABLED=1 # Install templ RUN go install github.com/a-h/templ/cmd/templ@latest -# Install bun for frontend asset builds -RUN apt-get update && apt-get install -y ca-certificates sqlite3 ffmpeg && rm -rf /var/lib/apt/lists/* +# Install build dependencies for bun + assets +RUN apt-get update && apt-get install -y ca-certificates sqlite3 ffmpeg curl unzip && rm -rf /var/lib/apt/lists/* RUN curl -fsSL https://bun.sh/install | bash ENV PATH="/root/.bun/bin:${PATH}"