Spaces:
Sleeping
Sleeping
FROM ollama/ollama | |
RUN apt update && apt install -y python3 && apt install -y python3-pip | |
RUN pip3 install litellm | |
RUN pip3 install 'litellm[proxy]' | |
RUN curl -fsSL https://ollama.com/install.sh | sh | |
RUN echo "Pulling" | |
RUN /bin/ollama pull mistral:instruct | |
ENTRYPOINT ["litellm", "--model", "ollama/mistral:instruct"] |