Spaces:
Runtime error
Runtime error
FROM python:3.9 | |
WORKDIR /code | |
COPY ./requirements.txt /code/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
COPY . . | |
RUN mkdir -p /tmp/cache/ | |
RUN chmod a+rwx -R /tmp/cache/ | |
ENV TRANSFORMERS_CACHE=/tmp/cache/ | |
ENV GRADIO_SERVER_NAME="0.0.0.0" | |
ENV GRADIO_SERVER_PORT=7860 | |
ENV GRADIO_ALLOW_FLAGGING="never" | |
CMD ["python", "app.py"] | |