From 788163063619988a7d3eda95c31a80495dde7243 Mon Sep 17 00:00:00 2001 From: cryptooda Date: Fri, 31 Jan 2025 12:35:06 +0700 Subject: [PATCH] Remove max size for node space --- src/Managing.WebApp/Dockerfile-web-ui-dev | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Managing.WebApp/Dockerfile-web-ui-dev b/src/Managing.WebApp/Dockerfile-web-ui-dev index 0b4a306..4c875e5 100644 --- a/src/Managing.WebApp/Dockerfile-web-ui-dev +++ b/src/Managing.WebApp/Dockerfile-web-ui-dev @@ -30,7 +30,7 @@ RUN npm install -g yarn #RUN npm i --max-old-space-size=12000 --loglevel=verbose -RUN yarn add eslint-plugin-jsdoc@37.9.7 --dev --ignore-engines +#RUN yarn add eslint-plugin-jsdoc@37.9.7 --dev --ignore-engines RUN yarn install --verbose # Copy the application code @@ -39,7 +39,7 @@ RUN ls -alh RUN ls -alh src/ # Build the Vite application #RUN npm run build -RUN node --max-old-space-size=8192 ./node_modules/.bin/vite build +#RUN node --max-old-space-size=8192 ./node_modules/.bin/vite build # Stage 2: Create the runtime image