FROM python:3.11-slim WORKDIR /app RUN apt-get update && apt-get install -y ffmpeg COPY requirements.txt . RUN pip install -r requirements.txt COPY . .