From b6d32a0c4db1ab17e0bce9fa6a2cef81b70e68f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=CC=88rg=20Kiesewetter?= Date: Wed, 8 May 2024 14:31:38 +0200 Subject: [PATCH] increasing node memory to be able to build the store-sync package --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5c58622ff9..59466982ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,6 +42,7 @@ WORKDIR /app # this resolves some chicken-and-egg problems with using workspace bins before they're created (install -> build -> install) RUN pnpm recursive run prepare RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile +ENV NODE_OPTIONS=--max-old-space-size=4096 RUN pnpm run -r build FROM mud AS store-indexer