From 90177f4b80eb24f0600b624c55f0b94b5c8c4721 Mon Sep 17 00:00:00 2001 From: Jakob Date: Wed, 22 Jan 2025 22:10:41 +0100 Subject: [PATCH] Update Dockerfile to copy yt-dlp binary from the correct distribution path. This change ensures that the executable is sourced from the newly structured build output directory, improving the build process's accuracy and reliability. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3e97864..34c39d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,6 @@ RUN /builder.sh FROM debian:trixie-slim -COPY --from=builder --chmod=755 /build/yt-dlp_linux /usr/bin/yt-dlp +COPY --from=builder --chmod=755 /yt-dlp/dist/yt-dlp_linux /usr/bin/yt-dlp ENTRYPOINT ["/usr/bin/yt-dlp"]