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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -2,6 +2,7 @@ FROM python:3.12-slim
2
 
3
  WORKDIR /app
4
 
 
5
  COPY . .
6
 
7
  # Upgrade pip
@@ -13,4 +14,5 @@ RUN playwright install chromium
13
 
14
  EXPOSE 5000
15
 
16
- CMD ["python", "app/main.py"]
 
 
2
 
3
  WORKDIR /app
4
 
5
+ # Copy all files from repo root
6
  COPY . .
7
 
8
  # Upgrade pip
 
14
 
15
  EXPOSE 5000
16
 
17
+ # Run Flask from current root folder
18
+ CMD ["python", "main.py"]