Spaces:
Runtime error
Runtime error
File size: 284 Bytes
9e9d400 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM python:3.9
WORKDIR /code
COPY --link --chown=1000 . .
RUN pip install --no-cache-dir -r requirements.txt
ENV PYTHONUNBUFFERED=1 GRADIO_ALLOW_FLAGGING=never GRADIO_NUM_PORTS=1 GRADIO_SERVER_NAME=0.0.0.0 GRADIO_SERVER_PORT=7860 SYSTEM=spaces
CMD ["python", "app.py"]
|