Update Dockerfile
Browse files- 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 |
|