-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDockerfile
38 lines (31 loc) · 906 Bytes
/
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
FROM rocker/verse:4.1.0
RUN apt-get update -qq && apt-get install -y --no-install-recommends \
nodejs \
npm
RUN wget https://github.com/rstudio/shinycannon/releases/download/v1.1.0/shinycannon_1.1.0-45731f0_amd64.deb && dpkg -i shinycannon_1.1.0-45731f0_amd64.deb && rm shinycannon_1.1.0-45731f0_amd64.deb
# Extra R packages
RUN install2.r --error --skipinstalled \
remotes \
renv \
bslib \
golem \
shinyjs \
profvis \
shinyloadtest \
googleCloudStorageR \
shiny.i18n \
leaflet \
sf \
logger \
reactable \
tidyr \
reactablefmtr \
purrr \
stringr
RUN Rscript -e 'remotes::install_version("apexcharter", version = "0.4.2")'
RUN installGithub.r \
RinteRface/charpente \
dreamRs/d3.format \
timelyportfolio/dataui
# Rstudio interface preferences
COPY rstudio-prefs.json /home/rstudio/.config/rstudio/rstudio-prefs.json