Increase heap size (#363)

This commit is contained in:
1ilit
2025-03-14 22:06:26 +04:00
committed by GitHub
parent 9396edddb2
commit 7f5f481cea

View File

@@ -4,6 +4,7 @@ WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
ENV NODE_OPTIONS="--max-old-space-size=4096"
RUN npm run build
# Stage 2: Setup the Nginx Server to serve the app