Files
yt-dlp-bot/Dockerfile
William P 7c3905e65f
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 18s
Build and Push Docker Image / deploy-on-green (push) Successful in 9s
Revert "Update python Docker tag to v3.14.0"
This reverts commit 59f6bcb22e.
2025-10-08 09:07:46 -04:00

6 lines
144 B
Docker

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