ollamcivic / Dockerfile
KRISH09bha's picture
Create Dockerfile
8aa4153 verified
raw
history blame contribute delete
422 Bytes
# 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"]