Pubgbc9799 commited on
Commit
0db807e
·
verified ·
1 Parent(s): c30f7d1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -2
Dockerfile CHANGED
@@ -1,9 +1,13 @@
1
- FROM mcr.microsoft.com/playwright:v1.53.0-jammy
2
 
3
  WORKDIR /app
4
 
5
- COPY . .
6
 
7
  RUN npm install
8
 
 
 
 
 
9
  CMD ["node", "app.js"]
 
1
+ FROM mcr.microsoft.com/playwright:v1.60.0-jammy
2
 
3
  WORKDIR /app
4
 
5
+ COPY package*.json ./
6
 
7
  RUN npm install
8
 
9
+ RUN npx playwright install --with-deps
10
+
11
+ COPY . .
12
+
13
  CMD ["node", "app.js"]