Akwbw commited on
Commit
b0cb214
Β·
verified Β·
1 Parent(s): 43e8100

Update Dockerfile

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