Spaces:
Sleeping
Sleeping
| # read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker | |
| # you will also find guides on how best to write your Dockerfile | |
| FROM python:3.12-slim | |
| # Update system packages to reduce vulnerabilities | |
| RUN apt-get update && apt-get upgrade -y && apt-get clean && rm -rf /var/lib/apt/lists/* | |
| # Required for Hugging Face Spaces Dev Mode functionality | |
| RUN useradd -m -u 1000 user | |
| WORKDIR /app | |
| COPY --chown=user ./requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
| COPY --chown=user . /app | |
| # Create and set permissions for logs directory in /tmp | |
| RUN mkdir -p /tmp/schematic_ai_logs && \ | |
| chown user:user /tmp/schematic_ai_logs | |
| USER user | |
| # Use Hugging Face's default port 7860 | |
| CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860"] | |