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}"