chatboss / startup.sh
gufett0's picture
improved dockerfile
d89b025
raw
history blame
262 Bytes
#!/bin/bash
# Start Ollama service
#ollama pull gemma2:2b
ollama serve &
# Ensure Ollama is ready
sleep 10
# Start the application
#exec uvicorn app:app --host 0.0.0.0 --port 7860
# Start the Streamlit application
exec streamlit run app.py --server.port=7860