ollama-serve / Dockerfile
aesopnix's picture
Update Dockerfile
ad79c83 verified
raw
history blame contribute delete
178 Bytes
FROM ollama/ollama:latest
RUN apt-get update && apt-get install curl -y
ENV OLLAMA_HOST=0.0.0.0
RUN useradd -m appuser && chown -R appuser:appuser /home/appuser
USER appuser