From 18bf6d59e09dc13cfad8cf75a73b632d013a84e5 Mon Sep 17 00:00:00 2001 From: Tiago Ribeiro Date: Fri, 14 Jul 2023 10:24:26 +0100 Subject: [PATCH] Added FFMPEG to Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index d0d2212..efbac17 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ ENV APP_HOME /app WORKDIR $APP_HOME COPY . ./ +RUN apt update && apt install -y ffmpeg + # Install production dependencies. RUN pip install --no-cache-dir -r requirements.txt