Spaces:
Sleeping
Sleeping
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"] | |