adaptshield / Dockerfile
SaiManish123's picture
Fix Dockerfile: install runtime deps with pip into system Python
5a2374c verified
raw
history blame contribute delete
627 Bytes
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"]