jofaichow commited on
Commit
c37ca3d
1 Parent(s): 6d300d5
Files changed (1) hide show
  1. Dockerfile +9 -4
Dockerfile CHANGED
@@ -2,13 +2,18 @@ FROM rocker/r-ver:4.2.3
2
 
3
  # Remotes
4
  RUN R -q -e "install.packages(c('remotes'))"
 
 
 
 
 
 
 
 
 
5
  # RUN R -q -e "install.packages(c('devtools'))"
6
- RUN R -q -e "remotes::install_version('xfun', version = '0.35', repos = 'http://cran.us.r-project.org')"
7
  RUN R -q -e "remotes::install_version('devtools', version = '2.4.5', repos = 'http://cran.us.r-project.org')"
8
 
9
- # Specific version of other Packages
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')"
12
 
13
  # RUN R -q -e "remotes::install_github('r-lib/later')"
14
  #RUN R -q -e "remotes::install_version('httpuv', version = '1.6.6', repos = 'http://cran.us.r-project.org')"
 
2
 
3
  # Remotes
4
  RUN R -q -e "install.packages(c('remotes'))"
5
+
6
+ # Other Packages
7
+ RUN R -q -e "remotes::install_version('xfun', version = '0.42', repos = 'http://cran.us.r-project.org')"
8
+ RUN R -q -e "remotes::install_version('fansi', version = '1.0.6', repos = 'http://cran.us.r-project.org')"
9
+ RUN R -q -e "remotes::install_version('xopen', version = '1.0.0', repos = 'http://cran.us.r-project.org')"
10
+
11
+ RUN R -q -e "remotes::install_version('farver', version = '2.1.1', repos = 'http://cran.us.r-project.org')"
12
+
13
+
14
  # RUN R -q -e "install.packages(c('devtools'))"
 
15
  RUN R -q -e "remotes::install_version('devtools', version = '2.4.5', repos = 'http://cran.us.r-project.org')"
16
 
 
 
 
17
 
18
  # RUN R -q -e "remotes::install_github('r-lib/later')"
19
  #RUN R -q -e "remotes::install_version('httpuv', version = '1.6.6', repos = 'http://cran.us.r-project.org')"