From a775a55291ec823032564e9d74386ecb1dfd49e5 Mon Sep 17 00:00:00 2001 From: Michelle Date: Thu, 30 Apr 2026 16:18:26 +0200 Subject: [PATCH] update Dockerfile with ffmpeg Co-authored-by: Copilot --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3cce781..69d2ecf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,9 @@ -FROM python:3.13.12-slim-trixie +FROM python:3.13.13-slim-trixie ENV PATH=/usr/local/bin:$PATH WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt +RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg && rm -rf /var/lib/apt/lists/* COPY . . CMD ["python", "-u", "main.py"] \ No newline at end of file