ragtag4 / Dockerfile.ollama
hugging2021's picture
Upload folder using huggingface_hub
79c7b05 verified
raw
history blame contribute delete
254 Bytes
FROM ollama/ollama:latest
# Install curl for healthcheck
RUN apt-get update && apt-get install -y curl
# Copy the entrypoint script
COPY ollama-entrypoint.sh /ollama-entrypoint.sh
RUN chmod +x /ollama-entrypoint.sh
ENTRYPOINT ["/ollama-entrypoint.sh"]