File size: 328 Bytes
a018e61
 
 
 
 
 
 
 
 
edb28a9
3c01cfc
 
412c9c8
 
 
 
 
a018e61
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM rocker/r-base:latest

WORKDIR /code

RUN install2.r --error \
    shiny \
    dplyr \
    ggplot2 \
    readr \
    ggExtra \
    shinythemes \
    plotly


# Install development packages from GitHub
RUN installGithub.r \
    rstudio/bslib \
COPY . .

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