PolicyEvolverEnv / Dockerfile
Somuai12's picture
fix: Align Container Port to 7860 for Hugging Face Space stability
04f9dda
Raw
History Blame Contribute Delete
543 Bytes
FROM python:3.11-slim
WORKDIR /app
# Copy dependency file first for layer caching
COPY server/requirements.txt ./requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Copy full package
COPY . .
# Expose port
EXPOSE 7860
# Liveness probe — validator checks this
HEALTHCHECK --interval=30s --timeout=10s --start-period=10s --retries=3 \
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:7860/health')"
# Start server
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]