Spaces:
Runtime error
Runtime error
File size: 254 Bytes
d0bb2fe beec757 d0bb2fe a37ec79 1df91e1 d0bb2fe d89bf1c d0bb2fe |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# 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
|