Spaces:
Running
Running
FROM continuumio/miniconda3 | |
WORKDIR /usr/src/app | |
RUN python -v | |
RUN mkdir /usr/src/app/flagged | |
COPY . . | |
RUN pip install --no-cache-dir -r requirements.txt | |
EXPOSE 7860 | |
ENV GRADIO_SERVER_NAME="0.0.0.0" | |
CMD ["python", "inference_app.py"] | |