FROM continuumio/miniconda3 WORKDIR /home/app RUN apt-get update RUN apt-get install nano unzip RUN apt install curl -y RUN curl -fsSL https://get.deta.dev/cli.sh | sh RUN pip install altair pandas numpy streamlit pydeck COPY . /home/app CMD streamlit run --server.port $PORT app.py