Spaces:
Running
Running
Upload docker-entrypoint.sh with huggingface_hub
Browse files- docker-entrypoint.sh +6 -0
docker-entrypoint.sh
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/bin/bash
|
| 2 |
+
set -e
|
| 3 |
+
|
| 4 |
+
# Start the FastAPI server (serves both API and static frontend)
|
| 5 |
+
cd /app
|
| 6 |
+
exec uvicorn server.app:app --host 0.0.0.0 --port 7860
|