-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
79 lines (69 loc) · 2.16 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
FROM rocker/shiny-verse
MAINTAINER Isaac Caruso <[email protected]>
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
libudunits2-dev \
libpoppler-cpp-dev \
libgdal-dev \
libproj-dev \
tcl \
tk
RUN R -e "devtools::install_github('rstudio/shiny')"
RUN R -e "devtools::install_github('ropensci/USAboundariesData')"
RUN install2.r --error \
rnoaa \
plotly \
lubridate \
zoo \
shinyWidgets \
shinycssloaders \
shinytoastr \
mathjaxr \
leaflet \
mosaic \
taxize \
raster \
rasterVis \
hash \
rgdal \
shinyalert \
shinyglide \
cicerone \
aws.s3 \
reshape2 \
tidyr \
ggplot2 \
pdftools \
ggridges \
magrittr \
shinyBS \
data.table \
shinyjs \
shinythemes \
shinyWidgets \
maps \
ncdf4 \
sf \
RCurl \
utils \
humidity \
RNCEP \
elevatr \
DT \
DataExplorer
# USAboundariesData
# MALDIquant \
# GEOquery
# RUN R -e "install.packages(pkgs=c('shiny', 'tidyverse', 'rnoaa', 'plotly', 'lubridate', 'zoo', 'shinyWidgets', 'shinycssloaders', 'shinytoastr', 'mathjaxr', 'leaflet', 'mosaic', 'taxize', 'raster', 'rasterVis', 'hash', 'rgdal', 'shinyalert', 'shinyglide', 'cicerone'), repos='https://cran.rstudio.com/')"
# RUN R -e "install.packages(pkgs=c('aws.s3', 'reshape2', 'tidyr', 'ggplot2', 'pdftools', 'ggridges', 'magrittr', 'shinyBS', 'data.table', 'shinyjs', 'shinysky', 'shinythemes', 'shinyWidgets', 'maps'), repos='https://cran.rstudio.com/')"
RUN R -e "devtools::install_github('ColinFay/glouton')"
RUN R -e "devtools::install_github('AnalytixWare/ShinySky')"
RUN R -e "devtools::install_github('carlganz/shinyCleave')"
RUN R -e "devtools::install_github('dreamRs/shinypop')"
RUN R -e "devtools::install_github('JohnCoene/shinyscroll')"
RUN R -e "devtools::install_github('mikejohnson51/AOI')"
RUN R -e "devtools::install_github('mikejohnson51/climateR')"
RUN R -e "devtools::install_github('seandavi/GEOquery')"
RUN R -e "devtools::install_github('sgibb/MALDIquant')"
RUN R -e "devtools::install_github('mrke/NicheMapR')"
RUN R -e "devtools::install_github('ilyamaclean/microclima')"