DockFormer / Dockerfile
Simon Dürr
basic template
bebad14
raw
history blame
259 Bytes
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"]