rasmodev commited on
Commit
b4c7a51
1 Parent(s): 4127d52

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -16,6 +16,9 @@ COPY ./app.py /app/app.py
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
21
 
 
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
+ # Copy the Train data into the container
20
+ COPY ./Train.csv /app/Train.csv
21
+
22
  # Expose port 8000 for the FastAPI application
23
  EXPOSE 7860
24