mlops / Dockerfile
Emil25's picture
Update Dockerfile
fae70a1 verified
raw
history blame
214 Bytes
FROM python:3.8
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
EXPOSE 8501
COPY . /app
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]