Spaces:
Sleeping
Sleeping
File size: 302 Bytes
de4eb9c 53b5720 19958df de4eb9c 53b5720 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | FROM python:3.11-slim
WORKDIR /app
# Copy project files
COPY . .
# Install Python dependencies
RUN pip install --no-cache-dir -e .
# Expose port 7860
EXPOSE 7860
# Run FastAPI server (serves HTML UI + REST API)
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "7860"] |