File size: 558 Bytes
a8185fd
2524d4a
3755265
2524d4a
3755265
2524d4a
3755265
 
2524d4a
 
 
 
 
 
 
 
3755265
 
 
2524d4a
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM ollama/ollama:latest
USER root

# Install curl for health checks
RUN apt-get update && \
    apt-get install -y --no-install-recommends curl && \
    rm -rf /var/lib/apt/lists/*

# Force Ollama to bind on 0.0.0.0:7860
ENV OLLAMA_HOST=0.0.0.0:7860
# Store models inside the container
ENV OLLAMA_MODELS=/root/.ollama/models
# Disable GPU (free tier = CPU only)
ENV OLLAMA_NUM_GPU=0
# Keep model loaded in memory permanently
ENV OLLAMA_KEEP_ALIVE=-1

EXPOSE 7860

COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]