Mahfujul commited on
Commit
d5c8dfa
1 Parent(s): 70f576d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -12,8 +12,8 @@ ENV TOKEN=MTAyOTExOTAzMzEwODM0NDg0Mw.GHRuSg.UJGFPx7vbUBU23sHWzUPastwQXwsi1aWZnKj
12
  WORKDIR /code
13
 
14
  # Copy package.json and install dependencies
15
- COPY package*.json ./
16
- RUN npm ci
17
 
18
  # Copy the rest of the application code
19
  COPY . .
 
12
  WORKDIR /code
13
 
14
  # Copy package.json and install dependencies
15
+ COPY package.json ./
16
+ RUN npm install
17
 
18
  # Copy the rest of the application code
19
  COPY . .