Fix Docker

This commit is contained in:
JonatanRek
2024-10-05 21:24:26 +02:00
parent 4e2efc2b08
commit fe091bd8ec
+11
View File
@@ -1,6 +1,17 @@
# Use PHP with Apache as the base image # Use PHP with Apache as the base image
FROM python:latest 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 Project
COPY . /app COPY . /app