Reaperxxxx commited on
Commit
fe66f39
·
verified ·
1 Parent(s): e3e95df

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -3
Dockerfile CHANGED
@@ -5,12 +5,11 @@ FROM mcr.microsoft.com/playwright:v1.42.0-jammy
5
  WORKDIR /app
6
 
7
  # Copy package.json and package-lock.json
8
- COPY package.json package-lock.json ./
9
 
10
  # Install dependencies
11
- RUN npm install --omit=dev
12
 
13
- # Copy the rest of the app
14
  COPY . .
15
 
16
  # Expose the API port
 
5
  WORKDIR /app
6
 
7
  # Copy package.json and package-lock.json
8
+ COPY package.json ./
9
 
10
  # Install dependencies
11
+ RUN npm install
12
 
 
13
  COPY . .
14
 
15
  # Expose the API port