jofaichow commited on
Commit
38e2b23
1 Parent(s): 9bb03bc
Files changed (1) hide show
  1. Dockerfile +4 -2
Dockerfile CHANGED
@@ -2,10 +2,12 @@ FROM rocker/r-ver:4.2.3
2
 
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_github('r-lib/later')"
8
- RUN R -q -e "remotes::install_version('httpuv', version = '1.6.6', repos = 'http://cran.us.r-project.org')"
 
9
 
10
  # Specific version of other Packages
11
  RUN R -q -e "remotes::install_version('farver', version = '2.1.1', repos = 'http://cran.us.r-project.org')"
 
2
 
3
  # Remotes
4
  RUN R -q -e "install.packages(c('remotes'))"
5
+ RUN R -q -e "install.packages(c('devtools'))"
6
 
7
  # Specific version of other Packages
8
+ # RUN R -q -e "remotes::install_github('r-lib/later')"
9
+ #RUN R -q -e "remotes::install_version('httpuv', version = '1.6.6', repos = 'http://cran.us.r-project.org')"
10
+ RUN R -q -e "devtools::install_github('rstudio/httpuv')""
11
 
12
  # Specific version of other Packages
13
  RUN R -q -e "remotes::install_version('farver', version = '2.1.1', repos = 'http://cran.us.r-project.org')"