FROM python:3.10 WORKDIR /app RUN apt-get update && apt-get install -y git ffmpeg COPY . . RUN pip install -r requirements.txt CMD ["python", "app.py"]