Spaces:
Sleeping
Sleeping
updated
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
|
@@ -25,8 +25,8 @@ RUN useradd -m -r -u 1000 appuser \
|
|
| 25 |
&& chown -R appuser:appuser /code
|
| 26 |
USER appuser
|
| 27 |
|
| 28 |
-
# Expose the port
|
| 29 |
-
EXPOSE
|
| 30 |
|
| 31 |
# Run the FastAPI app with Uvicorn
|
| 32 |
-
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "
|
|
|
|
| 25 |
&& chown -R appuser:appuser /code
|
| 26 |
USER appuser
|
| 27 |
|
| 28 |
+
# Expose the port Hugging Face Spaces expects
|
| 29 |
+
EXPOSE 7860
|
| 30 |
|
| 31 |
# Run the FastAPI app with Uvicorn
|
| 32 |
+
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]
|