# Use official Python image FROM python:3.11-slim # Set environment variables ENV PYTHONDONTWRITEBYTECODE=1 ENV PYTHONUNBUFFERED=1 # Set working directory WORKDIR /app # Install system dependencies (important for embeddings, etc.) RUN apt-get update && apt-get install -y \ build-essential \ curl \ git \ && rm -rf /var/lib/apt/lists/* # Copy requirements first (for caching) COPY requirements.txt . # Install Python dependencies RUN pip install --no-cache-dir -r requirements.txt # Copy full project COPY . . # Expose port (HuggingFace uses 7860) EXPOSE 7860 # Start FastAPI app CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]