File size: 248 Bytes
130f21c
 
 
 
 
 
 
28608c0
1
2
3
4
5
6
7
8
9
FROM python:3.8
WORKDIR /app
COPY requirements.txt ./requirements.txt
RUN pip install -r requirements.txt
EXPOSE 8501
COPY . /app
#ENTRYPOINT ["streamlit", "run"]
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.address=0.0.0.0"]