From 2b59576dc152145cf223463a949a289df91681c8 Mon Sep 17 00:00:00 2001 From: Kirill Chernakov Date: Tue, 10 Dec 2024 20:42:52 +0400 Subject: [PATCH] temp add NODE_OPTIONS="--max-old-space-size=8192" --- docker/Dockerfile.ui | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.ui b/docker/Dockerfile.ui index b0f3aa1a4..7a156a3bb 100644 --- a/docker/Dockerfile.ui +++ b/docker/Dockerfile.ui @@ -24,7 +24,7 @@ ENV NEXT_TELEMETRY_DISABLED 1 # If using npm comment out above and use below instead ENV API_URL http://localhost:8080 -RUN npm run build +RUN NODE_OPTIONS="--max-old-space-size=8192" npm run build # Production image, copy all the files and run next