phi3-128k-chinese / Dockerfile
ztc1997's picture
Update
8e2f500
raw
history blame contribute delete
263 Bytes
FROM python:3.11-slim
RUN mkdir /.ollama
RUN chmod 777 /.ollama
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"]