From eeedc77a0f0598a8b8f6cbb8eb52ea4f0b8f43cd Mon Sep 17 00:00:00 2001 From: Henry Date: Mon, 16 Jun 2025 22:07:19 +0100 Subject: [PATCH] fix: update Dockerfile to copy static files from apps/web directory --- apps/web/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index e4fa1d61..9400ddd7 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -56,8 +56,8 @@ COPY --from=pruner /app/out/full/ . RUN pnpm build --filter=${PROJECT} # Copy static files to standalone directory -COPY public .next/standalone/ -COPY .next/static .next/standalone/.next/ +COPY apps/web/public .next/standalone/ +COPY apps/web/.next/static .next/standalone/.next/ # 4. Final image - runner stage to run the application FROM base AS runner