From b0002c2107c78194cb91ccda109e670c69229b13 Mon Sep 17 00:00:00 2001 From: unknown <34411636+Dandevmt@users.noreply.github.com> Date: Sat, 6 Jan 2024 15:14:05 -0700 Subject: [PATCH] increase max old space size --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 6285d7a..df98018 100644 --- a/dockerfile +++ b/dockerfile @@ -8,7 +8,7 @@ RUN npm install COPY ./Client ./ -RUN node --max_old_space_size=800 node_modules/@angular/cli/bin/ng build --prod --verbose --configuration=production +RUN node --max_old_space_size=4096 node_modules/@angular/cli/bin/ng build --prod --verbose --configuration=production WORKDIR /app