Spaces:
Running
Running
File size: 805 Bytes
c2fdecf 7c7ef49 62fd591 7c7ef49 c2fdecf 7c7ef49 c2fdecf 7c7ef49 c2fdecf 7c7ef49 c2fdecf 7c7ef49 c2fdecf 7c7ef49 c2fdecf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# 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"]
|