# Hugging Face Docker Space. The data is NOT baked in: a bucket is mounted at /data, so the image stays # tiny and a new run needs no rebuild — only a bucket sync and a click of Refresh. FROM python:3.12-slim # Spaces run as uid 1000. RUN useradd -m -u 1000 user USER user ENV PATH="/home/user/.local/bin:$PATH" WORKDIR /app COPY --chown=user requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY --chown=user . . # Mount the bucket here: hf spaces volumes set -v hf://buckets//:/data ENV DATA_DIR=/data # HF routes public traffic to app_port from README.md frontmatter. CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]