From 0757855451dd5e89c52a8654b1899e4cf1c57dab Mon Sep 17 00:00:00 2001 From: Henry Date: Mon, 16 Jun 2025 22:45:48 +0100 Subject: [PATCH] fix: remove log --- apps/web/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/apps/web/Dockerfile b/apps/web/Dockerfile index 06b0e1d5..0a997303 100644 --- a/apps/web/Dockerfile +++ b/apps/web/Dockerfile @@ -57,11 +57,7 @@ COPY --from=pruner /app/out/full/ . RUN pnpm build --filter=${PROJECT} # Copy static files to standalone directory -RUN pwd && ls -la && \ - echo "=== Contents of .next ===" && \ - ls -la .next || true && \ - echo "=== Contents of .next/standalone ===" && \ - ls -la .next/standalone || true + RUN mkdir -p apps/web/.next/standalone/.next && \ mv apps/web/public apps/web/.next/standalone/ && \