File size: 458 Bytes
1b4ea86
 
 
 
efcf5dd
1b4ea86
67e1a7a
977cc7d
 
 
 
 
 
6bc7307
712c3da
67e1a7a
1b4ea86
efcf5dd
1b4ea86
efcf5dd
17e03a6
 
 
1b4ea86
 
 
 
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
FROM rocker/shiny-verse:latest

WORKDIR /code

# Install CRAN packages
RUN install2.r --error \
    shiny \
    htmltools \
    plotly \
    bsicons \
    sass \
    shinyWidgets \
    shinybusy \
    listviewer \
    NGLVieweR \
    colorspace 

# Install GitHub packages
RUN installGithub.r \
    rstudio/bslib \
    rstudio/httpuv \
    egenn/rtemis \
    egenn/rtemisbio 

COPY . .

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