From 8792aa1310e12e6908f5c4d003abda85affa8878 Mon Sep 17 00:00:00 2001 From: michael Date: Mon, 27 Jan 2025 19:08:09 +0100 Subject: [PATCH] Add ffmpeg to docker container --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f54814f..a2f380d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ FROM python:3.12-slim WORKDIR /app # Install git -RUN apt-get update && apt-get install -y git +RUN apt-get update && apt-get install -y git ffmpeg # Copy the requirements file into the container COPY requirements.txt .