From 8d5bd614749858ea32eee1122cd728cbfc0f5945 Mon Sep 17 00:00:00 2001 From: Henry Date: Mon, 16 Jun 2025 22:11:57 +0100 Subject: [PATCH] fix: copy from root --- apps/web/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 9400ddd7..539b30f5 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -57,7 +57,7 @@ RUN pnpm build --filter=${PROJECT} # Copy static files to standalone directory COPY apps/web/public .next/standalone/ -COPY apps/web/.next/static .next/standalone/.next/ +COPY .next/static .next/standalone/.next/ # 4. Final image - runner stage to run the application FROM base AS runner