Spaces:
Running
Running
fix httpuv
Browse files- Dockerfile +6 -7
Dockerfile
CHANGED
@@ -5,16 +5,15 @@ 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')"
|
14 |
|
15 |
-
#
|
16 |
-
RUN R -q -e "remotes::install_version('
|
|
|
17 |
|
|
|
|
|
18 |
|
19 |
# basic shiny functionality
|
20 |
RUN R -q -e "install.packages(c('rmarkdown', 'markdown'))"
|
@@ -25,7 +24,7 @@ RUN R -q -e "install.packages(c('shinyWidgets', 'shinycssloaders'))"
|
|
25 |
|
26 |
# other R packages
|
27 |
RUN R -q -e "install.packages(c('DT', 'plotly', 'scico', 'ggthemes', 'scales', 'wesanderson'))"
|
28 |
-
RUN R -q -e "install.packages(c('data.table', 'dtplyr', '
|
29 |
|
30 |
# modified version of Rnumerai
|
31 |
RUN R -q -e "devtools::install_github('woobe/Rnumerai')"
|
|
|
5 |
RUN R -q -e "install.packages(c('devtools'))"
|
6 |
|
7 |
# Specific version of other Packages
|
|
|
|
|
|
|
|
|
8 |
# Specific version of other Packages
|
9 |
RUN R -q -e "remotes::install_version('farver', version = '2.1.1', repos = 'http://cran.us.r-project.org')"
|
10 |
|
11 |
+
# RUN R -q -e "remotes::install_github('r-lib/later')"
|
12 |
+
#RUN R -q -e "remotes::install_version('httpuv', version = '1.6.6', repos = 'http://cran.us.r-project.org')"
|
13 |
+
# RUN R -q -e "devtools::install_github('rstudio/httpuv')"
|
14 |
|
15 |
+
# Specific version of Shiny
|
16 |
+
# RUN R -q -e "remotes::install_version('shiny', version = '1.7.3', repos = 'http://cran.us.r-project.org')"
|
17 |
|
18 |
# basic shiny functionality
|
19 |
RUN R -q -e "install.packages(c('rmarkdown', 'markdown'))"
|
|
|
24 |
|
25 |
# other R packages
|
26 |
RUN R -q -e "install.packages(c('DT', 'plotly', 'scico', 'ggthemes', 'scales', 'wesanderson'))"
|
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')"
|