-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
47 lines (40 loc) · 827 Bytes
/
Dockerfile
File metadata and controls
47 lines (40 loc) · 827 Bytes
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
FROM analythium/shinyproxy-demo:latest
# packages
USER root
RUN install2.r -r http://cran.rstudio.com/ remotes
# install tidyverse packages
RUN install2.r -r http://cran.rstudio.com/ \
dplyr \
tidyr \
purrr \
forcats \
stringr \
ggplot2
# install data readring/writing packages
RUN install2.r -r http://cran.rstudio.com/ \
readr \
readxl \
gargle \
googledrive \
googlesheets4
# install UI packages
RUN install2.r -r http://cran.rstudio.com/ \
shiny \
shinydashboard \
shinyjs \
shinytoastr \
shinycssloaders \
rlog \
prompter \
DT
# install lubridate
RUN install2.r -r http://cran.rstudio.com/ \
lubridate
# provide an argument to be set from built to restart build from here
ARG refresh=unknown
# app
RUN rm -rf /home/app/*
ARG app
COPY $app /home/app
LABEL app="$app"
USER app