researcher-reports / Dockerfile
evalstate's picture
evalstate HF Staff
Publish Research Archive template v1.0.0
9f1f79c verified
Raw
History Blame Contribute Delete
333 Bytes
FROM python:3.13-slim
WORKDIR /app
RUN pip install --no-cache-dir \
fastapi==0.116.1 \
uvicorn[standard]==0.35.0 \
markdown==3.8.2 \
bleach==6.2.0
COPY --link ./ /app
ENV RESEARCH_ROOT=/research
ENV PYTHONUNBUFFERED=1
ENV PORT=7860
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]