FROM python:3.7
EXPOSE 8501
WORKDIR /app
RUN pip3 install streamlit
COPY . .
CMD streamlit run main.py