From 63ec3b01091d36c07d193ab162f5eb01c5ebf0ea Mon Sep 17 00:00:00 2001 From: JetSprow Date: Thu, 30 Apr 2026 09:18:05 +1000 Subject: [PATCH] fix: increase docker build heap for next --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index bbd4a83..d863797 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . ENV NEXT_TELEMETRY_DISABLED=1 +ENV NODE_OPTIONS=--max-old-space-size=2048 RUN npx prisma generate RUN npm run build