Spaces:
Running
Running
File size: 481 Bytes
e3e5444 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | FROM python:3.10-slim
WORKDIR /app
# Upgrade pip and install dependencies safely
COPY requirements.txt .
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir -r requirements.txt
# Copy the entire project code into the container
COPY . .
# Expose port 7860 which is the standard default for Hugging Face Spaces
EXPOSE 7860
# Command to run FastAPI server natively on Space port
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|