ztc1997's picture
Update
b60ea9a
raw
history blame
189 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 /
CMD ["/bin/bash", "/run.sh"]