From c0ee372a2c0659b80152f19a01c4a8da5e2ad045 Mon Sep 17 00:00:00 2001 From: Fuxing Loh <4266087+fuxingloh@users.noreply.github.com> Date: Tue, 24 May 2022 00:19:41 +0800 Subject: [PATCH] chore(memory): increase node heap size to 4gb (#1460) --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index f7f878988a..7264bd9777 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM node:16-alpine3.13 +ENV NODE_OPTIONS="--max-old-space-size=4096" # Add curl to use docker healthcheck capability RUN apk --no-cache add curl