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.
This commit is contained in:
yachi 2025-10-19 20:02:52 +01:00
parent 1a55cd46a1
commit e407da5557

View File

@ -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