1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-03 12:34:00 +03:00
Files
YoutubePlaylistSync/Dockerfile
T

6 lines
165 B
Docker

FROM python:3.12-slim
WORKDIR /app
RUN apt-get update && apt-get install -y aria2 ffmpeg yt-dlp
COPY yt-playlist-main.py /app/
CMD ["python", "yt-playlist-main.py"]