Skip to content

Commit 632744e

Browse files
committed
new
1 parent eb5aff4 commit 632744e

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,9 @@ ENV NODE_ENV=$NODE_ENV \
4747
COPY package.json ./
4848
COPY package-lock.json ./
4949

50-
# CACHE CLEANING
51-
RUN npm cache clean--force
52-
53-
# INSTALLING DEPENDENCIES
54-
RUN npm install --legacy-peer-deps
50+
# CACHE CLEANING & INSTALLING DEPENDENCIES
51+
RUN npm cache clean --force && \
52+
npm install --legacy-peer-deps
5553

5654
# COPING REST ESSENTIALS OF THIS APP
5755
COPY . .

0 commit comments

Comments
 (0)