Spaces:
Build error
Build error
FROM ollama/ollama:latest | |
RUN apt update && apt install -y python3 && apt install -y python3-pip | |
RUN pip3 install litellm | |
RUN pip3 install 'litellm[proxy]' | |
COPY entrypoint.sh /entrypoint.sh | |
RUN chmod +x /entrypoint.sh | |
EXPOSE 4000 | |
ENTRYPOINT ["/entrypoint.sh"] |