FROM alpine:latest WORKDIR /app COPY . . RUN apk add --no-cache python3 py3-pip ffmpeg RUN pip3 install --no-cache-dir --break-system-packages -r requirements.txt CMD ["python3", "main.py"]