Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -5
Dockerfile
CHANGED
|
@@ -10,11 +10,8 @@ COPY ./requirements.txt /app/requirements.txt
|
|
| 10 |
# Install the Python dependencies
|
| 11 |
RUN pip install -r /app/requirements.txt
|
| 12 |
|
| 13 |
-
# Copy
|
| 14 |
-
COPY
|
| 15 |
-
|
| 16 |
-
# Copy the FastAPI application code into the container
|
| 17 |
-
COPY ./app.py /app/app.py
|
| 18 |
|
| 19 |
# Expose port 8000 for the FastAPI application
|
| 20 |
EXPOSE 8000
|
|
|
|
| 10 |
# Install the Python dependencies
|
| 11 |
RUN pip install -r /app/requirements.txt
|
| 12 |
|
| 13 |
+
# Copy all other relevant files into the work directory
|
| 14 |
+
COPY . .
|
|
|
|
|
|
|
|
|
|
| 15 |
|
| 16 |
# Expose port 8000 for the FastAPI application
|
| 17 |
EXPOSE 8000
|