Spaces:
Runtime error
Runtime error
File size: 237 Bytes
c4ab8c5 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM python:3.9
ARG GRADIO_SERVER_PORT=7860
ENV GRADIO_SERVER_PORT=${GRADIO_SERVER_PORT}
WORKDIR /workspace
ADD requirements.txt main.py /workspace/
RUN pip install -r /workspace/requirements.txt
CMD ["python", "/workspace/main.py"] |