File size: 259 Bytes
dffaf30
3d87e1b
 
 
bebad14
 
dffaf30
3d87e1b
 
 
dffaf30
1
2
3
4
5
6
7
8
9
10
11
12
FROM continuumio/miniconda3

WORKDIR /usr/src/app
COPY . .
# install dependcies
RUN conda install -y pandas numpy scikit-learn
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
ENV GRADIO_SERVER_NAME="0.0.0.0"

CMD ["python", "inference_app.py"]