Garuda/dockerfile
2025-06-15 15:37:24 +02:00

6 lines
190 B
Plaintext

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"]