Spaces:
Runtime error
Runtime error
File size: 311 Bytes
b9175b1 490ef4c | 1 2 3 4 5 6 7 8 9 10 11 12 13 | 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 app.py --server.port $PORT --server.address 0.0.0.0 |