File size: 450 Bytes
81eded5
 
 
fe79600
81eded5
f9e7684
81eded5
6ab1686
81eded5
fe79600
6ab1686
 
 
 
 
 
81eded5
6ab1686
81eded5
6ab1686
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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:lastest

WORKDIR /

RUN curl -fsSL https://ollama.com/install.sh | sh

RUN source
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 

RUN OLLAMA_HOST=0.0.0.0:2563 

CMD ["ollama", "serve" ]