File size: 175 Bytes
49085cc
 
 
 
 
fca717d
49085cc
 
1
2
3
4
5
6
7
8
9
FROM python:3.7

COPY . /var/app/
WORKDIR /var/app
RUN pip install --upgrade pip
RUN pip install streamlit==1.0
RUN pip install -r requirements.txt
CMD streamlit run ./app.py