Rizwan9 commited on
Commit
a272c83
·
verified ·
1 Parent(s): e0c6d53

Update Dockerfile

Browse files
Files changed (1) hide show
  1. 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 superkart_sales_forecast.joblib ./
11
- ENV MODEL_PATH=superkart_sales_forecast.joblib
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