OLLAMA / Dockerfile
akra35567's picture
Update Dockerfile
64b6655 verified
raw
history blame
737 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y curl ca-certificates && rm -rf /var/lib/apt/lists/*
RUN curl -fsSL https://ollama.com/install.sh | sh
WORKDIR /app
COPY requirements.txt .
COPY app.py .
COPY database.py .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
# LOOP + MODELO LEVE
RUN ollama serve & \
until curl -s http://localhost:11434/api/tags > /dev/null; do \
echo "Aguardando Ollama..." && sleep 2; \
done && \
echo "Ollama pronto! Puxando qwen2.5:0.5b-instruct-q4_0..." && \
ollama pull qwen2.5:0.5b-instruct-q4_0 && \
kill $!
HEALTHCHECK --interval=30s CMD curl -f http://localhost:7860/health || exit 1
ENV OLLAMA_NUM_PARALLEL=1
CMD ["python", "app.py"]