Reduce build memory by disabling sourcemaps in CI
Some checks failed
Build Docker Image / build (push) Failing after 3m27s

This commit is contained in:
Ruslan Bakiev
2026-02-06 09:32:12 +07:00
parent 05c91ca352
commit cf081e7e67
2 changed files with 9 additions and 0 deletions

View File

@@ -2,6 +2,9 @@ FROM node:22-slim AS build
ENV PNPM_HOME=/pnpm
ENV PATH=$PNPM_HOME:$PATH
ENV NODE_OPTIONS=--max-old-space-size=2048
ENV NUXT_SOURCEMAP=false
ENV NUXT_TELEMETRY_DISABLED=1
WORKDIR /app