Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -7,8 +7,8 @@ WORKDIR /app
|
|
| 7 |
COPY requirements.txt .
|
| 8 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 9 |
|
| 10 |
-
COPY app.py
|
| 11 |
-
ENV MODEL_PATH=
|
| 12 |
|
| 13 |
EXPOSE 5000
|
| 14 |
# ✅ Keep CMD on ONE LINE
|
|
|
|
| 7 |
COPY requirements.txt .
|
| 8 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 9 |
|
| 10 |
+
COPY app.py best_model_random_forest.joblib ./
|
| 11 |
+
ENV MODEL_PATH=best_model_random_forest.joblib
|
| 12 |
|
| 13 |
EXPOSE 5000
|
| 14 |
# ✅ Keep CMD on ONE LINE
|