From 42553f1d8c5abc365d6ddb555f39d6dd73a5f957 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 19 Feb 2026 05:23:00 +0100 Subject: [PATCH] fix: copy static with point --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 02b22bb..c253a7c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN addgroup -g 1001 nodejs \ # Copy only what is needed for runtime COPY --from=builder /app/.next/standalone ./ -COPY --from=builder /app/.next/static ./next/static +COPY --from=builder /app/.next/static ./.next/static COPY --from=builder /app/public ./public USER nextjs