From da01571c1b2b88004a34ab7dc42999acbdbc2667 Mon Sep 17 00:00:00 2001 From: hailin Date: Thu, 19 Feb 2026 05:03:53 -0800 Subject: [PATCH] fix: remove COPY public from web-admin Dockerfile The public directory doesn't exist in the project, causing Docker build to fail with "not found" error. Co-Authored-By: Claude Opus 4.6 --- it0-web-admin/Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/it0-web-admin/Dockerfile b/it0-web-admin/Dockerfile index f2e66dd..979a9e2 100644 --- a/it0-web-admin/Dockerfile +++ b/it0-web-admin/Dockerfile @@ -20,7 +20,6 @@ ENV NODE_ENV=production # Copy standalone server output (includes node_modules subset) COPY --from=builder /app/.next/standalone ./ COPY --from=builder /app/.next/static ./.next/static -COPY --from=builder /app/public ./public EXPOSE 3000