From c4205dbaf64626c47abf96e370c9c678f7e986af Mon Sep 17 00:00:00 2001 From: "Edgar P. Burkhart" Date: Mon, 26 May 2025 23:27:51 +0200 Subject: [PATCH] Install ffmpeg in Dockerfile for media processing support --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 6f4030a..96d58aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ WORKDIR /app ENV UV_COMPILE_BYTECODE=1 ENV UV_LINK_MODE=copy +RUN apt update -qq && apt install -y ffmpeg + RUN --mount=type=cache,target=/root/.cache/uv \ --mount=type=bind,source=uv.lock,target=uv.lock \ --mount=type=bind,source=pyproject.toml,target=pyproject.toml \