Spaces:
Sleeping
Sleeping
File size: 769 Bytes
e266561 d5bd0bf e266561 d5bd0bf e266561 d5bd0bf e266561 d5bd0bf e266561 | 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 27 28 29 30 31 | # Use a lightweight Python base image
FROM python:3.11-slim
# Install system dependencies
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
&& rm -rf /var/lib/apt/lists/*
# Set up a new user named "user" with user ID 1000
RUN useradd -m -u 1000 user
USER user
# Set home and path explicitly
ENV HOME=/home/user \
PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
# Copy requirements and install
COPY --chown=user requirements.txt .
RUN pip install --user --no-cache-dir -r requirements.txt
# Copy the rest of the backend code
COPY --chown=user . .
# Hugging Face Spaces exposes port 7860
EXPOSE 7860
# Command to run the FastAPI app via Uvicorn on port 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|