ollama / Dockerfile
jadeantonio's picture
Update Dockerfile
f53918d verified
raw
history blame contribute delete
191 Bytes
FROM ubuntu
RUN apt-get update
RUN apt-get install -y curl
RUN curl -fsSL https://ollama.com/install.sh | sh
RUN ollama serve
RUN ollama pull qwen: 0.5b
CMD ollama run qwen: 0.5b
EXPOSE 11434