Spaces:
Sleeping
Sleeping
File size: 627 Bytes
c1060df 5a2374c c1060df 5a2374c c1060df 5a2374c c1060df 5a2374c c1060df 5a2374c c1060df 5a2374c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ARG BASE_IMAGE=ghcr.io/meta-pytorch/openenv-base:latest
FROM ${BASE_IMAGE}
WORKDIR /app/env
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl \
&& rm -rf /var/lib/apt/lists/*
COPY server/requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY . /app/env
ENV PYTHONPATH="/app/env:${PYTHONPATH}"
ENV ADAPTSHIELD_TASK="direct-triage"
EXPOSE 7860
HEALTHCHECK --interval=30s --timeout=10s --start-period=30s --retries=3 \
CMD curl -f http://localhost:7860/health || exit 1
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]
|