Files
yt-dlp-bot/Dockerfile
William P 2558a7e930
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 3m18s
add ffmpeg to dockerfile
2025-07-11 20:41:09 -04:00

6 lines
144 B
Docker

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