9 lines
201 B
Docker
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"]
|