Pubgbc9799 commited on
Commit
ccdf9e8
·
verified ·
1 Parent(s): 7007697

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
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"]