FROM python:3.11.1-bullseye COPY . /app RUN chmod -R 777 /app WORKDIR /app RUN apt update && apt install ffmpeg -y RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt CMD ["python", "app.py"]