File size: 623 Bytes
b3a035e
 
 
 
ee53070
 
 
 
 
 
 
 
 
 
 
cc7d6bd
b3a035e
 
 
 
7bd1c0f
 
 
 
 
 
ce2e585
310f57e
 
ce2e585
 
c368a0d
 
b3a035e
 
 
ce2e585
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
26
27
28
29
30
31
32
33
34
35
36
37
FROM rocker/r-base:latest

WORKDIR /code


RUN apt-get update && apt-get install -y --no-install-recommends \
    libcurl4-openssl-dev \
    libssl-dev \
    libxml2-dev \
    build-essential \
    pkg-config \
    ca-certificates && \
    rm -rf /var/lib/apt/lists/*


RUN install2.r --error --skipinstalled \
    shiny \
    dplyr \
    ggplot2 \
    readr \
    ggExtra \
    data.table \
    ggsci \
    cowplot \
    egg \
    Polychrome \
    patchwork \
    curl \
    openssl \
    httr2 \
    DT \
    shinythemes \
    reshape2
    
COPY . .

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