From 08370d4c4e240b68fcc49a08af02b38fbd68eafe Mon Sep 17 00:00:00 2001 From: Dessalines Date: Thu, 29 Jun 2023 11:12:12 -0400 Subject: [PATCH] Try increasing node memory. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2b36581..92b3f7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,7 +27,7 @@ COPY .git .git RUN echo "export const VERSION = '$(git describe --tag)';" > "src/shared/version.ts" RUN yarn --production --prefer-offline -RUN yarn build:prod +RUN NODE_OPTIONS="--max-old-space-size=8192" yarn build:prod # Prune the image RUN node-prune /usr/src/app/node_modules -- 2.44.1