Merge pull request #212 from hugomd/fix/use-production

Install production dependencies with lockfile
This commit is contained in:
Mike Cao 2020-09-23 21:31:03 -07:00 committed by GitHub
commit 9f9715f4a9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ WORKDIR /build
COPY package.json yarn.lock /build/ COPY package.json yarn.lock /build/
# Install only the production dependencies # Install only the production dependencies
RUN yarn install --frozen-lockfile RUN yarn install --production --frozen-lockfile
# Cache these modules for production # Cache these modules for production
RUN cp -R node_modules/ prod_node_modules/ RUN cp -R node_modules/ prod_node_modules/