fix: vite build issue: set memory limit for Node.js to 2048 MB

This commit is contained in:
Daniel Avila 2023-04-09 07:35:10 -04:00
parent 83d0443c8a
commit 942a85f531

View file

@ -6,6 +6,8 @@ COPY /client/package*.json /client/
RUN npm ci
# Copy the current directory contents into the container at /client
COPY /client/ /client/
# Set the memory limit for Node.js
ENV NODE_OPTIONS="--max-old-space-size=2048"
# Build webpack artifacts
RUN npm run build