ollama-test / Dockerfile
Alexvatti's picture
Create Dockerfile
a5fa2c8 verified
raw
history blame contribute delete
247 Bytes
FROM debian:bookworm-slim
# Install dependencies
RUN apt-get update && apt-get install -y \
curl \
&& rm -rf /var/lib/apt/lists/*
# Install Ollama
RUN curl -fsSL https://ollama.com/install.sh | bash
# Run Ollama
CMD ["ollama", "serve"]