🐳 chore(Dockerfile): replace npm ci with npm install for OS specific builds

This commit is contained in:
Danny Avila 2024-02-29 09:46:33 -05:00 committed by GitHub
parent 93803323cf
commit ed7d7c2fda
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -7,7 +7,8 @@ WORKDIR /app
# Allow mounting of these files, which have no default
# values.
RUN touch .env
RUN npm ci
RUN apk --no-cache add curl && \
npm install
# React client build
ENV NODE_OPTIONS="--max-old-space-size=2048"