Spaces:
Runtime error
Runtime error
# Use Python image | |
FROM python:3.10-slim | |
# Set working directory | |
WORKDIR /app | |
# Copy requirements and app | |
COPY requirements.txt . | |
COPY app.py . | |
# Install dependencies | |
RUN pip install --upgrade pip | |
RUN pip install -r requirements.txt | |
RUN pip install ollama # Ollama SDK | |
# Expose port (HF Spaces uses 7860 by default) | |
EXPOSE 7860 | |
# Run app with Uvicorn | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |