Spaces:
Runtime error
Runtime error
File size: 269 Bytes
2e2148b f9493cb 2e2148b 5e89640 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.12-slim
RUN pip install uv
RUN uv venv
COPY requirements.txt .
RUN uv pip install -r requirements.txt
COPY . .
ENV GRADIO_SERVER_NAME="0.0.0.0"
ENV GRADIO_SERVER_PORT="8080"
CMD .venv/bin/granian --interface asgi --port 8080 --host 0.0.0.0 main:app
|