Spaces:
Running
Running
File size: 672 Bytes
a301de7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | # 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"]
|