From fe091bd8ec71cd8e6bacb91f5d0d7be9df49616f Mon Sep 17 00:00:00 2001 From: JonatanRek Date: Sat, 5 Oct 2024 21:24:26 +0200 Subject: [PATCH] Fix Docker --- Dockerfile | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Dockerfile b/Dockerfile index 690fcb3..fe370a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,17 @@ # Use PHP with Apache as the base image FROM python:latest +# Install Additional System Dependencies +RUN apt-get update && apt-get upgrade -y +RUN apt-get install -y \ + ffmpeg \ + libsm6 \ + libxext6 + +# Clear cache +RUN apt-get autoremove +RUN apt-get clean && rm -rf /var/lib/apt/lists/* + #Copy Project COPY . /app