Update Dockerfile
Browse files- 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"]
|