data-use-annotate / Dockerfile
rafmacalaba's picture
annotation review app (per-user queues, Hub-backed rulings, static-safe direct commit)
53ea208 verified
Raw
History Blame Contribute Delete
166 Bytes
FROM python:3.14-slim
RUN pip install --no-cache-dir huggingface_hub
COPY . /app/human_labeling
EXPOSE 7860
CMD ["python", "human_labeling/app.py", "--port", "7860"]