ztc1997's picture
Update
ece8092
raw
history blame
219 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install git -y && apt-get install curl -y
RUN curl -fsSL https://ollama.com/install.sh | sh
ADD run.sh /
ENV OLLAMA_HOST=0.0.0.0:7860
CMD ["/bin/bash", "/run.sh"]