From db8140a2665ee8aa87c8c2b310e0d8f52dee3a27 Mon Sep 17 00:00:00 2001 From: mkelvers Date: Sat, 18 Apr 2026 07:26:44 +0200 Subject: [PATCH] chore: install ffmpeg --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5943dbd..94399d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ ENV CGO_ENABLED=1 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 curl unzip && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y ca-certificates sqlite3 ffmpeg && rm -rf /var/lib/apt/lists/* RUN curl -fsSL https://bun.sh/install | bash ENV PATH="/root/.bun/bin:${PATH}"