From 290b72660c58a68ed746f22e6bdcaeb8c8737e71 Mon Sep 17 00:00:00 2001 From: Henry Date: Mon, 16 Jun 2025 22:36:06 +0100 Subject: [PATCH] fix: log contents of build --- apps/web/Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 036df0c8..aa00b3ed 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -56,10 +56,11 @@ COPY --from=pruner /app/out/full/ . RUN pnpm build --filter=${PROJECT} # Copy static files to standalone directory -RUN ls -la && \ - cp -r /app/apps/web/public .next/standalone/ && \ - cp -r .next/static .next/standalone/.next/ - +RUN pwd && ls -la && \ + echo "=== Contents of .next ===" && \ + ls -la .next || true && \ + echo "=== Contents of .next/standalone ===" && \ + ls -la .next/standalone || true # 4. Final image - runner stage to run the application FROM base AS runner ARG APP_DIRNAME