Files
miku-discord/Dockerfile.ollama

9 lines
201 B
Docker

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"]