pushpam14's picture
Deploy Enterprise Contract Guardian — finale build
1607c63 verified
Raw
History Blame Contribute Delete
725 Bytes
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends curl && \
rm -rf /var/lib/apt/lists/*
# Copy and install Python dependencies first (cache layer)
COPY server/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy project files
COPY . .
# Set PYTHONPATH so imports resolve correctly
ENV PYTHONPATH="/app:$PYTHONPATH"
# Expose the port HF Spaces expects
EXPOSE 7860
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
CMD curl -f http://localhost:7860/health || exit 1
# Run the FastAPI server
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"]