diddy-api / Dockerfile
abhy60098's picture
Create Dockerfile
03717e7 verified
raw
history blame contribute delete
259 Bytes
FROM ollama/ollama
# Expose the standard Ollama port
EXPOSE 11434
# Pre-download your custom model so it's ready immediately
RUN ollama serve & sleep 5 && ollama pull UncensoredAi/diddy
# Start Ollama when the container boots
ENTRYPOINT ["ollama", "serve"]