AdithyaSK's picture
AdithyaSK HF Staff
Harbor run viewer: Phase 0 eval, 15 harnesses x 50 tasks, pass@4
3d20eb8 verified
Raw
History Blame Contribute Delete
684 Bytes
# 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 <space> -v hf://buckets/<ns>/<bucket>:/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"]