ollama-cpu-llama3.1 / entrypoint.sh
subhrajit-mohanty's picture
Update entrypoint.sh
0628f1f verified
raw
history blame contribute delete
351 Bytes
#!/bin/bash
# Start Ollama server in the background
ollama serve &
# Wait for the server to be ready
while ! nc -z localhost 7860; do
echo "Waiting for Ollama server to start..."
sleep 1
done
# Pull the model
echo "Pulling the model..."
ollama pull steamdj/llama3-cpu-only
# hf.co/unsloth/phi-4-GGUF:Q8_0
# Keep the container running
wait