Missing yarn cache clean after yarn install DOK-P1005
Performance
Minor
5 months ago5 months old
yarn cache clean missing after yarn install was run.
 4
 5WORKDIR /app
 6
 7RUN yarn install 8RUN yarn run build
 9
10CMD ["yarn","run","production"]
yarn cache clean missing after yarn install was run.
 6
 7COPY . .
 8
 9RUN yarn install10
11CMD ["yarn","run start"]
12
yarn cache clean missing after yarn install was run.
 4
 5COPY . .
 6
 7RUN yarn install 8
 9EXPOSE 7000
10