From e407da55570d669fc0f4919154517e4fbd0384d6 Mon Sep 17 00:00:00 2001 From: yachi Date: Sun, 19 Oct 2025 20:02:52 +0100 Subject: [PATCH] fix: Remove docs copy from Dockerfile The docs directory is not copied to the builder stage, so it doesn't exist to copy to the production stage. Docs are not needed in the runtime container. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4f11037..af991e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,7 +50,8 @@ RUN npm ci --omit=dev --ignore-scripts && \ # Copy built application from builder COPY --chown=ytdlp:ytdlp --from=builder /app/lib ./lib -COPY --chown=ytdlp:ytdlp --from=builder /app/docs ./docs + +# Copy README for reference COPY --chown=ytdlp:ytdlp README.md ./ # Create downloads directory