training-deploy-hf / Dockerfile
Kabaug's picture
updates
490ef4c
Raw
History Blame Contribute Delete
311 Bytes
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