rasmodev commited on
Commit
4f07873
·
1 Parent(s): d1cc9e9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -14,7 +14,7 @@ RUN pip install -r /app/requirements.txt
14
  COPY ./app.py /app/app.py
15
 
16
  # Copy the model and key components into the container
17
- COPY ./rf_model.pkl /app/rf_model.pkl
18
 
19
  # Expose port 8000 for the FastAPI application
20
  EXPOSE 7860
 
14
  COPY ./app.py /app/app.py
15
 
16
  # Copy the model and key components into the container
17
+ COPY ./model_and_key_components.pkl /app/model_and_key_components.pkl
18
 
19
  # Expose port 8000 for the FastAPI application
20
  EXPOSE 7860