jofaichow commited on
Commit
6493f1e
1 Parent(s): 68ad1d6

added R packages

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -1
Dockerfile CHANGED
@@ -3,8 +3,12 @@ FROM rocker/r-ver
3
  # basic shiny functionality
4
  RUN R -q -e "install.packages(c('shiny', 'rmarkdown'))"
5
 
 
 
 
 
6
  # other R packages
7
- RUN R -q -e "install.packages(c('data.table', 'Rnumerai'))"
8
 
9
  # copy the app to the image
10
  WORKDIR /shinyapp
 
3
  # basic shiny functionality
4
  RUN R -q -e "install.packages(c('shiny', 'rmarkdown'))"
5
 
6
+ # additional shiny functionality
7
+ RUN R -q -e "install.packages(c('shinydashboard', 'shinydashboardPlus', 'shinyWidgets'))"
8
+ RUN R -q -e "install.packages(c('fresh', 'shinycssloaders'))"
9
+
10
  # other R packages
11
+ RUN R -q -e "install.packages(c('data.table', 'DT', 'Rnumerai'))"
12
 
13
  # copy the app to the image
14
  WORKDIR /shinyapp