From 31fbe0a8094086bb8177043df0eb06475e60cc53 Mon Sep 17 00:00:00 2001 From: zias Date: Wed, 1 Apr 2026 11:27:08 +0200 Subject: [PATCH] fix(ci):increase build limits preventing heap OOM --- apps/start/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/start/Dockerfile b/apps/start/Dockerfile index 1978d8a2..533631cb 100644 --- a/apps/start/Dockerfile +++ b/apps/start/Dockerfile @@ -85,6 +85,7 @@ COPY apps/public/public/op1.js ./apps/start/public/op1.js FROM --platform=$BUILDPLATFORM base-build AS build WORKDIR /app +ENV NODE_OPTIONS="--max-old-space-size=4096" # Install all dependencies (including dev dependencies for build) RUN pnpm install --frozen-lockfile && \