You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package.json .
## install only the packages defined in the package-lock.json (faster than the normal npm install)
RUN npm install
...
Potential issues:
package.lock.json is not copyed
package.lock.json is not used for installation
Is this what the implementation should be looked like?:
...
# A wildcard is used to ensure both package.json AND package-lock.json are copied
COPY package.* .
## install only the packages defined in the package-lock.json (faster than the normal npm install)
RUN npm ci
...
The text was updated successfully, but these errors were encountered:
jEnbuska
changed the title
clinet Dockerfile.env
clients Dockerfile.env comments do not match implementation
Apr 20, 2021
At https://github.com/LukeMwila/multi-container-nginx-react-node-mongo/blob/master/client/Dockerfile.dev there seems to be inconsistency between comments and implementation
Potential issues:
Is this what the implementation should be looked like?:
The text was updated successfully, but these errors were encountered: