File size: 239 Bytes
de2b30c
 
 
 
 
 
 
f868e0a
 
 
de2b30c
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM rocker/shiny-verse:latest

WORKDIR /code

# Install stable packages from CRAN
RUN install2.r --error \
    ggExtra \
    shiny \
    bslib \
    httpuv

COPY . .

CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]