tudeplom commited on
Commit
d57a541
·
verified ·
1 Parent(s): 8b4d9a3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -9,7 +9,7 @@ COPY . .
9
  # Cài đặt thư viện
10
  RUN pip install -r requirements.txt
11
 
12
- # Chạy script tải model
13
- RUN python download_model.py
14
 
15
- CMD ["python", "app.py"]
 
9
  # Cài đặt thư viện
10
  RUN pip install -r requirements.txt
11
 
12
+ # Chạy script tải model từ thư mục model/
13
+ RUN python model/download_model.py
14
 
15
+ CMD ["python", "app.py"]