From 862d589b8824204a8a0a3867f071699d9ed5cab5 Mon Sep 17 00:00:00 2001 From: Aaron Date: Thu, 19 Feb 2026 05:18:23 +0100 Subject: [PATCH] fix: copy static --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 97012d8..02b22bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +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/public ./public USER nextjs