Skip to content

Commit

Permalink
build: up node memory during docker build (#2810)
Browse files Browse the repository at this point in the history
  • Loading branch information
joergkiesewetter authored May 14, 2024
1 parent b91a8e5 commit f03a179
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +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
RUN pnpm run -r build
RUN NODE_OPTIONS=--max-old-space-size=4096 pnpm run -r build

FROM mud AS store-indexer
WORKDIR /app/packages/store-indexer
Expand Down

0 comments on commit f03a179

Please sign in to comment.