Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +3 -12
Dockerfile
CHANGED
|
@@ -1,16 +1,7 @@
|
|
| 1 |
-
FROM
|
| 2 |
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
# Install stable packages from CRAN
|
| 6 |
-
RUN install2.r --error \
|
| 7 |
-
ggExtra \
|
| 8 |
-
shiny
|
| 9 |
-
|
| 10 |
-
# Install development packages from GitHub
|
| 11 |
-
RUN installGithub.r \
|
| 12 |
-
rstudio/bslib \
|
| 13 |
-
rstudio/httpuv
|
| 14 |
|
| 15 |
COPY . .
|
| 16 |
|
|
|
|
| 1 |
+
FROM bioconductor/bioconductor_docker:RELEASE_3_19
|
| 2 |
|
| 3 |
+
RUN R -e 'BiocManager::install(c("shiny", "shinydashboard", "shinyWidgets", "shinyFiles", "DT", "ggplot2", "dplyr", "tibble", "htmlwidgets", "plotly", "heatmaply", "magrittr", "gprofiler2", "openxlsx"))'
|
| 4 |
+
RUN R -e 'BiocManager::install("genefilter")'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
|
| 6 |
COPY . .
|
| 7 |
|