mirror of
https://github.com/goldbergyoni/nodebestpractices.git
synced 2025-10-27 19:17:13 +08:00
Update clean-cache.md
This commit is contained in:
@ -19,7 +19,7 @@ Node package managers, npm & Yarn, cache the installed packages locally so that
|
||||
FROM node:12-slim AS build
|
||||
WORKDIR /usr/src/app
|
||||
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
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user