FROM python:3.12-alpine WORKDIR /usr/src/app RUN apk add --no-cache ffmpeg COPY requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt COPY . . CMD [ "python", "./main.py" ]