Merge pull request #1736 from stackblitz-labs/revert-1725-fix/docker-oom
Some checks failed
Docker Publish / docker-build-publish (push) Has been cancelled
Update Stable Branch / prepare-release (push) Has been cancelled

revert: "fix: increase Node.js memory limit in Docker build"
This commit is contained in:
KevIsDev 2025-05-26 16:46:28 +01:00 committed by GitHub
commit b6992fe3a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ ENV WRANGLER_SEND_METRICS=false \
RUN mkdir -p /root/.config/.wrangler && \
echo '{"enabled":false}' > /root/.config/.wrangler/metrics.json
RUN node --max-old-space-size=4096 node_modules/.bin/pnpm run build
RUN pnpm run build
CMD [ "pnpm", "run", "dockerstart"]