sg1961/streamlit_sample_app
0
1FROM continuumio/miniconda32 3WORKDIR /home/app4 5RUN apt-get update6RUN apt-get install nano unzip7RUN apt install curl -y8 9RUN curl -fsSL https://get.deta.dev/cli.sh | sh10RUN pip install altair pandas numpy streamlit pydeck11 12COPY . /home/app13 14CMD streamlit run --server.port 7860 app.py15 