Spaces:
Sleeping
Sleeping
| # RewardPilot API — Hugging Face Docker Space | |
| FROM python:3.11-slim | |
| # build tools + Tesseract OCR & Poppler (for reading the credit limit off image-only | |
| # statement summaries like HDFC's) | |
| RUN apt-get update && apt-get install -y --no-install-recommends \ | |
| build-essential \ | |
| tesseract-ocr \ | |
| poppler-utils \ | |
| && rm -rf /var/lib/apt/lists/* | |
| WORKDIR /app | |
| COPY requirements.txt . | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY app ./app | |
| ENV PYTHONUNBUFFERED=1 | |
| # Hugging Face Spaces expose port 7860 | |
| EXPOSE 7860 | |
| CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"] | |