From 32aa1b66f5bad8acfbd9c54d215366364f467228 Mon Sep 17 00:00:00 2001 From: line-6000 <154492442+line-6000@users.noreply.github.com> Date: Sat, 2 May 2026 01:51:40 +0800 Subject: [PATCH] Clean up Dockerfile by removing static file copies Remove redundant COPY commands for static files. --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index a70b81a..0d6959e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,6 @@ RUN apk --no-cache add ca-certificates tzdata ARG API_RATE_URL="" WORKDIR /app -COPY --from=builder /app/src/static /app/static -COPY --from=builder /app/src/static /static COPY --from=builder /app/src/.env.example /app/.env RUN if [ -n "$API_RATE_URL" ]; then \ sed -i "s|^api_rate_url=.*$|api_rate_url=${API_RATE_URL}|" /app/.env; \