Do0rMaMu commited on
Commit
73af5ba
1 Parent(s): e78f80a

Create entrypoint.sh

Browse files
Files changed (1) hide show
  1. entrypoint.sh +6 -0
entrypoint.sh ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # Start Ollama in the background
3
+ ollama run llama2-uncensored &
4
+
5
+ # Start the FastAPI application
6
+ exec uvicorn main:app --host 0.0.0.0 --port 7860