jofaichow commited on
Commit
2fb41dc
1 Parent(s): f7be59f

trying to fix dependencies

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -2
Dockerfile CHANGED
@@ -2,7 +2,8 @@ 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
 
7
  # Specific version of other Packages
8
  # Specific version of other Packages
@@ -27,7 +28,9 @@ RUN R -q -e "install.packages(c('DT', 'plotly', 'scico', 'ggthemes', 'scales', '
27
  RUN R -q -e "install.packages(c('data.table', 'dtplyr', 'googlesheets4'))"
28
 
29
  # modified version of Rnumerai
30
- RUN R -q -e "devtools::install_github('woobe/Rnumerai')"
 
 
31
 
32
  # copy the app to the image
33
  WORKDIR /shinyapp
 
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('devtools', version = '2.4.5', repos = 'http://cran.us.r-project.org')"
7
 
8
  # Specific version of other Packages
9
  # Specific version of other Packages
 
28
  RUN R -q -e "install.packages(c('data.table', 'dtplyr', 'googlesheets4'))"
29
 
30
  # modified version of Rnumerai
31
+ # RUN R -q -e "devtools::install_github('woobe/Rnumerai')"
32
+ RUN R -q -e "remotes::install_github('woobe/Rnumerai')"
33
+
34
 
35
  # copy the app to the image
36
  WORKDIR /shinyapp