File size: 554 Bytes
317eaf3 7b9c753 317eaf3 | 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 27 | FROM python:3.11-slim
# Install necessary tools
RUN apt-get update && apt-get install -y curl zstd && rm -rf /var/lib/apt/lists/*
# Install Ollama
RUN curl -fsSL https://ollama.com/install.sh | sh
WORKDIR /app
# Install dependencies
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application
COPY . .
# Make entrypoint script executable
COPY entrypoint.sh .
RUN chmod +x entrypoint.sh
# Hugging Face Spaces expose port 7860 by default
EXPOSE 7860
# Run entrypoint script
CMD ["./entrypoint.sh"]
|