Fix docker build failing (#1177)

This commit is contained in:
Krishan 2023-03-29 21:57:05 +11:00 committed by GitHub
parent 8524472d38
commit cfddaaae13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -6,6 +6,7 @@ WORKDIR /src
COPY .npmrc package.json package-lock.json /src/
RUN npm ci
COPY . /src/
ENV NODE_OPTIONS=--max_old_space_size=4096
RUN npm run build