Spaces:
Sleeping
Sleeping
Commit ·
60e45cc
1
Parent(s): 2950d2e
fix: update Dockerfile port to 7860 for HF health check
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -7,6 +7,6 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
| 7 |
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
-
EXPOSE
|
| 11 |
|
| 12 |
-
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 7 |
|
| 8 |
COPY . .
|
| 9 |
|
| 10 |
+
EXPOSE 7860
|
| 11 |
|
| 12 |
+
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]
|