Spaces:
Runtime error
Runtime error
| 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/python main.py | |