jofaichow commited on
Commit
575a179
1 Parent(s): afd0e45

fixed dependency

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