Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -5,7 +5,7 @@ FROM python:3.11.3-slim
|
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
# Copy your FastAPI application code into the container
|
| 8 |
-
COPY
|
| 9 |
|
| 10 |
# Copy the model and key components into the container
|
| 11 |
COPY ./model_and_key_components.pkl /app/model_and_key_components.pkl
|
|
|
|
| 5 |
WORKDIR /app
|
| 6 |
|
| 7 |
# Copy your FastAPI application code into the container
|
| 8 |
+
COPY ./app.py /app/app.py
|
| 9 |
|
| 10 |
# Copy the model and key components into the container
|
| 11 |
COPY ./model_and_key_components.pkl /app/model_and_key_components.pkl
|