Spaces:
Sleeping
Sleeping
File size: 574 Bytes
60ce743 32ca6b9 60ce743 32ca6b9 60ce743 32ca6b9 bd4a430 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | FROM python:3.11-slim
# HuggingFace Spaces runs as user 1000 — set it up properly
RUN useradd -m -u 1000 user
USER user
ENV PATH="/home/user/.local/bin:$PATH"
WORKDIR /app
# Copy and install dependencies
COPY --chown=user requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Copy app source
COPY --chown=user . .
# HF Docker Spaces expect port 7860
EXPOSE 7860
# FastAPI via uvicorn — 0.0.0.0 required for HF to route traffic in
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |