Spaces:
Sleeping
Sleeping
fix: update dockerfile exposed to default HF port
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -13,7 +13,7 @@ RUN pip install --no-cache-dir -r requirements.txt
|
|
13 |
COPY . .
|
14 |
|
15 |
# Expose the port FastAPI runs on
|
16 |
-
EXPOSE
|
17 |
|
18 |
# Run the application with Uvicorn
|
19 |
-
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "
|
|
|
13 |
COPY . .
|
14 |
|
15 |
# Expose the port FastAPI runs on
|
16 |
+
EXPOSE 7860
|
17 |
|
18 |
# Run the application with Uvicorn
|
19 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|