File size: 561 Bytes
81eded5 8c2826c 81eded5 1b1437f f9e7684 97ae4e6 81eded5 ecacaa1 b756314 9848f61 81eded5 95298c2 4bc7215 81eded5 bdd949e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
# you will also find guides on how best to write your Dockerfile
FROM ubuntu:latest
RUN apt update -y && apt upgrade -y
WORKDIR /
RUN chmod +x / -r
RUN apt install curl -y
RUN bash -c "curl -fsSL https://ollama.com/install.sh | sh"
RUN OLLAMA_HOST=0.0.0.0:7860
# RUN ollama serve&
# RUN ollama pull mistral
# RUN ollama pull llama2
# RUN ollama pull llava
# RUN ollama pull all-minilm
# RUN ollama pull nomic-embed-text
# RUN ollama pull mxbai-embed-large
CMD ["ollama", "serve" ]
|