jofaichow commited on
Commit
4dc271b
·
1 Parent(s): 575a179

trying to fix dependency

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