From 61cff5f97348686f4d6f86d1b7dfae4ae671e0f2 Mon Sep 17 00:00:00 2001 From: Me Date: Fri, 28 Jul 2023 18:22:09 -0600 Subject: [PATCH] lower max old space to 500 --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index 147316f..c2e74b0 100644 --- a/dockerfile +++ b/dockerfile @@ -8,7 +8,7 @@ RUN npm install COPY ./Client ./ -RUN node --max_old_space_size=750 node_modules/@angular/cli/bin/ng build --prod --configuration=production +RUN node --max_old_space_size=500 node_modules/@angular/cli/bin/ng build --prod --configuration=production WORKDIR /app