Skip to content

Commit

Permalink
added missing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
akochari authored Jun 25, 2024
1 parent 8e715a7 commit a1e2428
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*

# Command to install standard R packages from CRAN; enter the list of required packages for your app here
RUN Rscript -e 'install.packages(c("shiny","tidyverse","BiocManager", "caret", "mlr", "xgboost", "shinythemes", "DT"))'
RUN Rscript -e 'install.packages(c("shiny","tidyverse","BiocManager", "caret", "mlr", "xgboost", "shinythemes", "DT", "caret", "recipes"))'

# Command to install packages from Bioconductor; enter the list of required Bioconductor packages for your app here
RUN Rscript -e 'BiocManager::install(c("Biostrings"),ask = F)'
Expand Down

0 comments on commit a1e2428

Please sign in to comment.