Akwbw commited on
Commit
720f661
Β·
verified Β·
1 Parent(s): 13f382a

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +18 -0
Dockerfile ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Base image
2
+ FROM python:3.12-slim
3
+
4
+ # Set work directory
5
+ WORKDIR /app
6
+
7
+ # Copy files
8
+ COPY app/ .
9
+
10
+ # Install dependencies
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+ RUN playwright install chromium
13
+
14
+ # Expose port
15
+ EXPOSE 5000
16
+
17
+ # Start Flask
18
+ CMD ["python", "main.py"]