Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -14,7 +14,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 14 |
COPY app.py .
|
| 15 |
|
| 16 |
# Expose port for FastAPI
|
| 17 |
-
EXPOSE
|
| 18 |
|
| 19 |
# Run the FastAPI app with uvicorn
|
| 20 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 14 |
COPY app.py .
|
| 15 |
|
| 16 |
# Expose port for FastAPI
|
| 17 |
+
EXPOSE 7860
|
| 18 |
|
| 19 |
# Run the FastAPI app with uvicorn
|
| 20 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|