Spaces:
Sleeping
Sleeping
FROM ollama/ollama:latest | |
RUN ollama serve & sleep 5 && ollama run mistral:7b | |
RUN apt update && apt install -y python3 && apt install -y python3-pip | |
RUN pip3 install litellm | |
RUN pip3 install 'litellm[proxy]' | |
EXPOSE 4000 | |
ENTRYPOINT ["litellm", "--model", "ollama/mistral:7b"] |