Rizwan9 commited on
Commit
27022b1
·
verified ·
1 Parent(s): 9de6388

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -4,13 +4,13 @@ ENV PYTHONUNBUFFERED=1
4
  ENV OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MKL_NUM_THREADS=1 NUMEXPR_NUM_THREADS=1
5
  ENV PORT=7860
6
 
7
- ARG BUILD_ID=20
8
  WORKDIR /app
9
 
10
  COPY requirements.txt .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
- # match the model filename you actually have
14
  COPY app.py best_model_random_forest.joblib ./
15
  ENV MODEL_PATH=best_model_random_forest.joblib
16
 
 
4
  ENV OMP_NUM_THREADS=1 OPENBLAS_NUM_THREADS=1 MKL_NUM_THREADS=1 NUMEXPR_NUM_THREADS=1
5
  ENV PORT=7860
6
 
7
+ ARG BUILD_ID=21
8
  WORKDIR /app
9
 
10
  COPY requirements.txt .
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
+ # 👇 make sure this filename matches your artifact in the repo
14
  COPY app.py best_model_random_forest.joblib ./
15
  ENV MODEL_PATH=best_model_random_forest.joblib
16