2025-02-23 16:44:08 +01:00
|
|
|
FROM python:3.9-slim
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
2025-02-23 18:02:51 +01:00
|
|
|
RUN apt update && apt install -y ffmpeg
|
2025-02-23 16:44:08 +01:00
|
|
|
COPY requirements.txt ./
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
CMD ["python", "main.py"]
|