From 3ba494c6300fa3ed647531b9c5fa2befe4732979 Mon Sep 17 00:00:00 2001 From: Kunwarvir Dhillon <243457111+kdhillon-stripe@users.noreply.github.com> Date: Thu, 26 Mar 2026 19:51:37 -0400 Subject: [PATCH] Disable Next telemetry during Docker builds Committed-By-Agent: codex Co-authored-by: codex --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 17c46dd3..acaeedbd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ COPY . ./ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile ENV NODE_OPTIONS="--max-old-space-size=4096" -RUN pnpm build +RUN NEXT_TELEMETRY_DISABLED=1 pnpm build # Create standalone deployment with lockfile-pinned deps FROM build AS deploy