File size: 236 Bytes
dffaf30
3d87e1b
 
dffaf30
e8bd09a
3d87e1b
dffaf30
3d87e1b
 
 
dffaf30
1
2
3
4
5
6
7
8
9
10
11
12
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"]