mirror of
https://github.com/goldbergyoni/nodebestpractices.git
synced 2025-10-28 03:25:55 +08:00
Merge pull request #864 from Fdawgs/patch-1
docs(install-for-production): fix npm cache cli example
This commit is contained in:
@ -18,7 +18,7 @@ Dev dependencies greatly increase the container attack surface (i.e. potential s
|
|||||||
FROM node:12-slim AS build
|
FROM node:12-slim AS build
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
COPY package.json package-lock.json ./
|
COPY package.json package-lock.json ./
|
||||||
RUN npm ci --production && npm clean cache --force
|
RUN npm ci --production && npm cache clean --force
|
||||||
|
|
||||||
# The rest comes here
|
# The rest comes here
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user