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

Add Docker workflow and Dockerfile for building and pushing images to Gitea registry

This commit is contained in:
2025-10-15 12:56:02 +03:00
parent c7805ee619
commit c4d7e300e2
2 changed files with 64 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM python:3.12-slim
WORKDIR /app
COPY yt-playlist-main.py /app/
COPY bin/aria2c.exe /app/bin/
COPY bin/ffmpeg.exe /app/bin/
COPY bin/yt-dlp.exe /app/bin/
ENV PATH="/app/bin:$PATH"
CMD ["python", "yt-playlist-main.py"]