Spaces:
Running
Running
FROM python:3.10-slim | |
WORKDIR /app | |
# Copy requirements first for better caching | |
COPY requirements.txt . | |
# Install dependencies | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Copy the rest of the application | |
COPY . . | |
# Create static directory | |
RUN mkdir -p static | |
# Set environment variables for HF Spaces | |
ENV HOST=0.0.0.0 | |
ENV PORT=7860 | |
# Command to run the application | |
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |