TuringsSolutions commited on
Commit
025b23d
·
verified ·
1 Parent(s): bf5a404

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,8 +4,8 @@ FROM node:14
4
  # Set the working directory
5
  WORKDIR /usr/src/app
6
 
7
- # Copy package.json and package-lock.json
8
- COPY package*.json ./
9
 
10
  # Clear npm cache and install dependencies
11
  RUN npm cache clean --force
 
4
  # Set the working directory
5
  WORKDIR /usr/src/app
6
 
7
+ # Copy package.json
8
+ COPY package.json ./
9
 
10
  # Clear npm cache and install dependencies
11
  RUN npm cache clean --force