File size: 339 Bytes
f74cd06
 
 
 
 
c16fda7
f74cd06
 
 
 
 
e40b2a1
fa46941
f74cd06
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Builder stage
FROM ubuntu:latest

RUN apt update &&  apt install curl -y

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

# Create the directory and give appropriate permissions
RUN mkdir -p /.ollama && chmod 777 /.ollama

# Command to run the application
CMD ollama serve & ollama pull mistral


# Expose the server port
EXPOSE 7860