From c8879f964d2a3a7246feef71e206390cf79f4ac6 Mon Sep 17 00:00:00 2001 From: Me Date: Fri, 28 Jul 2023 17:03:23 -0600 Subject: [PATCH] Adjust max old space size when building angular --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 67b8301..ac8ed9d 100644 --- a/dockerfile +++ b/dockerfile @@ -8,7 +8,7 @@ RUN npm install COPY ./Client ./ -RUN node node_modules/@angular/cli/bin/ng build --prod --configuration=production +RUN node --max_old_space_size=1500 node_modules/@angular/cli/bin/ng build --prod --configuration=production WORKDIR /app