Spaces:
Runtime error
Runtime error
File size: 254 Bytes
79c7b05 |
1 2 3 4 5 6 7 8 9 10 |
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"] |