Spaces:
Runtime error
Runtime error
File size: 823 Bytes
ec0bd37 b225ca7 d5601e0 ec0bd37 07d5bdf 125b878 ec0bd37 125b878 18471aa ec0bd37 18471aa ec0bd37 3127a6a 125b878 ec0bd37 07d5bdf 125b878 ec0bd37 125b878 3243695 ec0bd37 198b72c 07d5bdf ec0bd37 09b4560 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# Use the latest Ubuntu image as the base
FROM ubuntu:latest
# Update the package list and install curl
RUN apt-get update && apt-get install -y curl
# Install Ollama using the official install script
RUN curl -fsSL https://ollama.com/install.sh | sh
# Set the Ollama host environment variable
ENV OLLAMA_HOST=0.0.0.0
# Create the Ollama directory and set permissions
RUN mkdir -p /.ollama && chmod 777 /.ollama
# Create the models directory and set permissions
RUN mkdir -p /usr/share/ollama/.ollama/models && chmod -R 777 /usr/share/ollama/.ollama/models
# Set the Ollama models environment variable
ENV OLLAMA_MODELS="/usr/share/ollama/.ollama/models"
# Expose the Ollama server port
EXPOSE 7860
# Run the Ollama server and pull the Baymax model
CMD ollama serve & sleep 5 && ollama pull noahabebe/baymax && wait |