Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
thangquang09
/
Deploy_FastAPI_Space
like
0
Paused
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
thangquang09
commited on
Mar 26, 2025
Commit
5dea10f
·
1 Parent(s):
03aa457
add start.sh and update Dockerfile
Browse files
Files changed (1)
hide
show
start.sh
+10
-0
start.sh
ADDED
Viewed
@@ -0,0 +1,10 @@
1
+
#!/bin/bash
2
+
3
+
# Start Ollama in the background
4
+
ollama serve &
5
+
6
+
# Wait for Ollama to start
7
+
sleep 5
8
+
9
+
# Start FastAPI app
10
+
uvicorn app:app --host 0.0.0.0 --port 7860