File size: 413 Bytes
6b6806c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM ubuntu:kinetic

# Doesn't usually have an "upgrade"
RUN apt-get update \
 && DEBIAN_FRONTEND=noninteractive \
    apt-get install --no-install-recommends --assume-yes \
	  build-essential \
      python3 \
	  python3-dev \
      python3-pip

COPY requirements.txt .

RUN pip install -r requirements.txt

COPY . .

ENTRYPOINT ["/bin/sh", "-c"]

EXPOSE 7860

CMD ["shiny run --port 7860 --host 0.0.0.0 app.py"]