File size: 426 Bytes
85ca423
 
 
5a7e65b
 
 
85ca423
 
 
 
59f4ec2
1
2
3
4
5
6
7
8
9
10
11
FROM ubuntu

RUN apt-get update && \
    apt-get install -y --no-install-recommends ca-certificates curl && \
    curl -L https://github.com/ollama/ollama/releases/download/v0.5.7/ollama-linux-amd64.tgz -o ollama-linux-amd64.tgz && \
    tar -C /usr -xzf ollama-linux-amd64.tgz

ENV OLLAMA_HOST="0.0.0.0:7860"
ENV OLLAMA_ORIGINS="*"

CMD ["sh", "-c", "ollama serve & sleep 10 && ollama run deepseek-r1:1.5b && sleep infinity"]