Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
bschilder committed Oct 27, 2023
1 parent 1eceb31 commit be5d36c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inst/templates/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ WORKDIR /$PKG
#### Install package dependencies ####
RUN Rscript -e 'options(download.file.method="libcurl", crayon.enabled=TRUE, timeout=2000); \
if(!require("BiocManager")) install.packages("BiocManager"); \
if(!require("remotes")) install.packages("remotes");
repos <- BiocManager::repositories()
if(!require("remotes")) install.packages("remotes"); \
repos <- BiocManager::repositories() \
remotes::install_local(repos=repos, dependencies=TRUE, build_vignettes=FALSE, upgrade=TRUE, force=TRUE)'
RUN rm -rf /$PKG

0 comments on commit be5d36c

Please sign in to comment.