Spaces:
Running
Running
File size: 235 Bytes
8e70df9 6c8a2d5 10848f9 6c8a2d5 390e337 6c8a2d5 b67e3a6 8e70df9 b67e3a6 |
1 2 3 4 5 6 7 8 9 10 11 |
FROM python:3.12-slim
COPY ./ ./
# Install dependencies
RUN pip install --no-cache --upgrade -r /requirements.txt
# Start the application
CMD ["uvicorn", "backend.main:app", "--host", "0.0.0.0", "--port", "7860", "--workers", "2"]
|