Spaces:
Sleeping
Sleeping
File size: 504 Bytes
3405b9f | 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
# Set working directory
WORKDIR /app
# Install uv
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
# Copy requirements first to leverage Docker cache
COPY requirements.txt .
# Install dependencies using uv
RUN uv pip install --system --no-cache -r requirements.txt
# Copy the rest of the application code
COPY . .
# Expose port 7860 for HuggingFace Spaces
EXPOSE 7860
# Run Uvicorn on 0.0.0.0:7860
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]
|