ollama-server / Dockerfile
Yakova's picture
Update Dockerfile
a37ec79
raw
history blame
254 Bytes
# Builder stage
FROM ubuntu:latest
RUN sudo apt update && sudo apt install curl
RUN curl https://ollama.ai/install.sh | sh
# Command to run the application
CMD ollama serve & sleep 10s && ollama pull zephyr
# Expose the server port
EXPOSE 7860