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

Update Docker and workflow configurations for improved build process

This commit is contained in:
2026-03-18 18:10:25 +02:00
parent 7b6e0c094e
commit 94db632043
5 changed files with 63 additions and 9 deletions
+5 -5
View File
@@ -4,13 +4,13 @@ WORKDIR /app
# Copy application code (package) and bootstrap
COPY yt-playlist-main.py /app/
COPY ytplaylist/ /app/ytplaylist/
COPY ytpld/ /app/ytpld/
COPY config/ /app/config/
# Copy helper binaries into a bin/ folder inside the image
COPY ./bin/ffmpeg /app/bin/ffmpeg
COPY ./bin/yt-dlp /app/bin/yt-dlp
COPY ./bin/aria2c /app/bin/aria2c
# Copy helper binaries from the build context (which includes extracted artifacts)
COPY bin/ffmpeg /app/bin/ffmpeg
COPY bin/yt-dlp /app/bin/yt-dlp
COPY bin/aria2c /app/bin/aria2c
# Copy entrypoint that maps environment variables to CLI flags
COPY docker-entrypoint.sh /app/docker-entrypoint.sh