Diabetes_Predictor / Dockerfile
leofilo's picture
Upload 10 files
3294074 verified
raw
history blame contribute delete
291 Bytes
#Docker File for Azure
FROM python:3.10
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN pip3 install -r requirements.txt
COPY . /app
EXPOSE 8501
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]
#CMD streamlit run app.py