Update Dockerfile
Browse files- Dockerfile +13 -1
Dockerfile
CHANGED
@@ -13,10 +13,22 @@ RUN install2.r --error \
|
|
13 |
BiocManager
|
14 |
CMD ["R", "--quiet", "-e", "BiocManager::install("cBioPortalData")"]
|
15 |
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
|
18 |
# Install development packages from GitHub
|
19 |
RUN installGithub.r \
|
|
|
|
|
|
|
20 |
vojtam/g3viz
|
21 |
|
22 |
COPY . .
|
|
|
13 |
BiocManager
|
14 |
CMD ["R", "--quiet", "-e", "BiocManager::install("cBioPortalData")"]
|
15 |
|
16 |
+
RUN install2.r --error \
|
17 |
+
shiny \
|
18 |
+
DT \
|
19 |
+
rhino \
|
20 |
+
data.table \
|
21 |
+
gargoyle \
|
22 |
+
thematic \
|
23 |
+
stats \
|
24 |
+
plotly \
|
25 |
+
shinyjs
|
26 |
|
27 |
# Install development packages from GitHub
|
28 |
RUN installGithub.r \
|
29 |
+
rstudio/bslib \
|
30 |
+
rstudio/httpuv \
|
31 |
+
RinteRface/bs4Dash \
|
32 |
vojtam/g3viz
|
33 |
|
34 |
COPY . .
|