Skip to content

Commit 37135a8

Browse files
rm-rf-etcpierreneter
authored andcommitted
Fix instruction in dockerization guide. Issue #1344 (#1346)
1 parent 3b2a089 commit 37135a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

locale/en/docs/guides/nodejs-docker-webapp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ note that if you are using `npm` version 5 or later you will also want to copy
102102
# Install app dependencies
103103
COPY package.json .
104104
# For npm@5 or later, copy package-lock.json as well
105-
# COPY package.json package-lock.json .
105+
# COPY package.json package-lock.json ./
106106
107107
RUN npm install
108108
```
@@ -146,7 +146,7 @@ WORKDIR /usr/src/app
146146
# Install app dependencies
147147
COPY package.json .
148148
# For npm@5 or later, copy package-lock.json as well
149-
# COPY package.json package-lock.json .
149+
# COPY package.json package-lock.json ./
150150
151151
RUN npm install
152152

0 commit comments

Comments
 (0)