SpacesExamples/shiny-with-python
0
1FROM ubuntu:kinetic2 3# Doesn't usually have an "upgrade"4RUN apt-get update \5 && DEBIAN_FRONTEND=noninteractive \6 apt-get install --no-install-recommends --assume-yes \7 build-essential \8 python3 \9 python3-dev \10 python3-pip11 12COPY requirements.txt .13 14RUN pip install -r requirements.txt15 16COPY . .17 18ENTRYPOINT ["/bin/sh", "-c"]19 20EXPOSE 786021 22CMD ["shiny run --port 7860 --host 0.0.0.0 app.py"]