File size: 306 Bytes
7aa9a58
0c0e249
abfe329
0c0e249
 
 
 
 
 
7aa9a58
507a834
 
0c0e249
7aa9a58
19f7f3a
abfe329
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM rocker/r-base:latest

WORKDIR /app

RUN install2.r --error \
    shiny \
    dplyr \
    ggplot2 \
    readr \
    ggExtra \
    remotes \
    googlesheets4

RUN R -e "remotes::install_github('dayoonkwon/BioAge')"

COPY app.R .

EXPOSE 7860

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