jofaichow commited on
Commit
ccb21d1
1 Parent(s): 2cdfa88

specific R packages

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -4,7 +4,10 @@ FROM rocker/r-ver:4.2.3
4
  RUN R -q -e "install.packages(c('remotes'))"
5
 
6
  # Specific version of Shiny
7
- RUN R -q -e "remotes::install_version('shiny', version = '1.7.3', repos = 'http://cran.us.r-project.org')"
 
 
 
8
 
9
  # basic shiny functionality
10
  RUN R -q -e "install.packages(c('rmarkdown', 'markdown'))"
 
4
  RUN R -q -e "install.packages(c('remotes'))"
5
 
6
  # Specific version of Shiny
7
+ RUN R -q -e "remotes::install_version('shiny', version = '1.8.0', repos = 'http://cran.us.r-project.org')"
8
+
9
+ # Specific version of other Packages
10
+ RUN R -q -e "remotes::install_version('farver', version = '2.1.1', repos = 'http://cran.us.r-project.org')"
11
 
12
  # basic shiny functionality
13
  RUN R -q -e "install.packages(c('rmarkdown', 'markdown'))"