Spaces:
Runtime error
Runtime error
# 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 | |