From 54518bd12769a36efe953b5f16a7c343d1a2de2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Arroba?= <19954079+cesararroba@users.noreply.github.com> Date: Wed, 17 Jun 2026 13:02:20 +0200 Subject: [PATCH] fix(ui): raise node heap to fix arm64 docker build OOM (#11628) --- ui/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/Dockerfile b/ui/Dockerfile index f7ec32c55e..6cf930ee5e 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -16,6 +16,7 @@ WORKDIR /app # Install dependencies based on the preferred package manager COPY package.json pnpm-lock.yaml pnpm-workspace.yaml ./ COPY scripts ./scripts +ENV NODE_OPTIONS=--max-old-space-size=4096 RUN corepack install && pnpm install --frozen-lockfile