Pubgbc9799 commited on
Commit
25b0180
·
verified ·
1 Parent(s): 53f032d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -4
Dockerfile CHANGED
@@ -2,12 +2,12 @@ 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"]
 
 
 
2
 
3
  WORKDIR /app
4
 
5
+ COPY package.json .
6
 
7
  RUN npm install
8
 
 
 
9
  COPY . .
10
 
11
+ EXPOSE 7860
12
+
13
+ CMD ["npm", "start"]