FROM python:3.14.0-alpine3.22 COPY ./app /app WORKDIR /app RUN apk add ffmpeg deno RUN pip install -r requirements.txt CMD ["python", "/app/main.py"]