ollama-server-backend / Dockerfile
thewise's picture
Update Dockerfile
360362a verified
raw
history blame
375 Bytes
# 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
# Command to pull model
CMD ollama pull llama2
# Expose the server port
EXPOSE 7860