FROM python:3.13-alpine RUN apk add --no-cache opus ffmpeg yt-dlp WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt ENV PYTHONPATH=/app/src ENV PYTHONUNBUFFERED=1 ENTRYPOINT ["python", "-m", "derp"]