From 35f331ebf7c3326aad11b76f281ec348ec93a677 Mon Sep 17 00:00:00 2001 From: sverben <59171289+sverben@users.noreply.github.com> Date: Sun, 21 Jan 2024 20:51:10 +0100 Subject: [PATCH] Fix: install ffmpeg --- api/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/Dockerfile b/api/Dockerfile index bb95c3a..640a0c7 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -1,5 +1,7 @@ FROM python:3.11-slim +RUN apt -yy update && apt -yy install ffmpeg && apt clean + COPY app/requirements.txt /tmp/requirements.txt RUN pip install --no-cache-dir -r /tmp/requirements.txt