dfa32412 commited on
Commit
8c7b6d8
·
verified ·
1 Parent(s): 658d821

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -0
Dockerfile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM mcr.microsoft.com/playwright/python:v1.44.0-jammy
2
+
3
+ WORKDIR /app
4
+
5
+ RUN pip install --no-cache-dir flask requests curl_cffi werkzeug loguru dotenv playwright
6
+ run python -m playwright install --with-deps chromium
7
+
8
+ COPY . .
9
+
10
+ ENV PORT=5200
11
+ EXPOSE 5200
12
+
13
+ CMD ["python", "app.py"]