# Hugging Face Docker Space — FastAPI Harbor Visualiser. FROM python:3.11-slim # git: needed for gh:// dataset clones. (harbor CLI installs via pip for harbor://.) RUN apt-get update && apt-get install -y --no-install-recommends git \ && rm -rf /var/lib/apt/lists/* RUN useradd -m -u 1000 user USER user ENV PATH="/home/user/.local/bin:$PATH" \ HARBOR_VIEWER_CACHE=/tmp/.harbor-viewer-cache WORKDIR /app COPY --chown=user requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY --chown=user . . # HF routes public traffic to app_port (7860, set in README.md frontmatter). CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]