Files
yt-dlp-bot/Dockerfile
William P 0821359792
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m54s
Build and Push Docker Image / deploy-on-green (push) Successful in 9s
install zstd for it to work on 3.14
2025-10-08 09:16:48 -04:00

6 lines
149 B
Docker

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