File size: 327 Bytes
0beb7d4
 
0e876f8
0beb7d4
0e876f8
0beb7d4
048cbd1
0beb7d4
 
048cbd1
9b379d0
 
0beb7d4
 
94efce7
0beb7d4
 
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 https://ollama.ai/install.sh | sh

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

WORKDIR /.ollama

# Command to run the application
CMD ollama serve 

# Expose the server port
EXPOSE 7860