Files
miku-discord/Dockerfile.ollama

9 lines
201 B
Docker
Raw Normal View History

2025-12-07 17:15:09 +02:00
FROM ollama/ollama
# Install curl so we can run health checks
USER root
RUN apt-get update && apt-get install -y curl && apt-get clean
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]