9 lines
200 B
Docker
9 lines
200 B
Docker
# dockerfile for containerized yt-dlp
|
|
|
|
FROM python:3-bookworm
|
|
|
|
RUN apt update && apt install -y ffmpeg
|
|
|
|
RUN wget https://github.com/yt-dlp/yt-dlp/releases/latest/download/yt-dlp
|
|
RUN chmod +x ./yt-dlp
|