From 8a24a9e77309327b70c40b9823ee37151bab28d6 Mon Sep 17 00:00:00 2001 From: Shayan Jizan Date: Sun, 21 May 2023 13:49:05 -0400 Subject: [PATCH] Update Dockerfile Install the ffmpeg dependency. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6d090c6..4cf2a71 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM python:3.10.9-slim RUN apt update +RUN apt-get install -y ffmpeg RUN apt install python3-pip -y RUN mkdir /app