File size: 530 Bytes
2e09db0
 
 
 
636172d
 
 
 
 
 
e623b6a
636172d
2e09db0
 
 
 
 
457e419
636172d
 
 
2e09db0
 
636172d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM rocker/r-base:latest

WORKDIR /code

RUN apt-get update && apt-get install -y \
    pandoc \
    wget \
    && apt-get clean

RUN R -e "install.packages('tinytex'); tinytex::install_tinytex()"
RUN R -e "tinytex::tlmgr_install(c('amsmath', 'geometry', 'graphicx', 'xcolor', 'fancyhdr', 'sectsty', 'hyperref', 'fontspec'))"

RUN install2.r --error \
    shiny \
    dplyr \
    ggplot2 \
    readr \
    ggExtra \
    rmarkdown \
    knitr

COPY . .

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