Update Dockerfile
Browse files- Dockerfile +13 -2
Dockerfile
CHANGED
@@ -8,12 +8,23 @@ WORKDIR /code
|
|
8 |
|
9 |
# Install renv
|
10 |
RUN install2.r --error \
|
11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
# Copy application code
|
14 |
COPY . .
|
15 |
|
16 |
# Install dependencies
|
17 |
-
RUN Rscript -e 'options(renv.config.cache.enabled = FALSE); renv::restore(prompt = FALSE)'
|
18 |
|
19 |
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|
|
|
8 |
|
9 |
# Install renv
|
10 |
RUN install2.r --error \
|
11 |
+
shiny
|
12 |
+
bs4Dash
|
13 |
+
DT
|
14 |
+
rhino
|
15 |
+
data.table
|
16 |
+
g3viz
|
17 |
+
gargoyle
|
18 |
+
thematic
|
19 |
+
stats
|
20 |
+
plotly
|
21 |
+
shinyjs
|
22 |
+
|
23 |
|
24 |
# Copy application code
|
25 |
COPY . .
|
26 |
|
27 |
# Install dependencies
|
28 |
+
#RUN Rscript -e 'options(renv.config.cache.enabled = FALSE); renv::restore(prompt = FALSE)'
|
29 |
|
30 |
CMD ["R", "--quiet", "-e", "shiny::runApp(host='0.0.0.0', port=7860)"]
|