Skip to content
This repository was archived by the owner on Jul 23, 2025. It is now read-only.

Commit 08951c5

Browse files
committed
Add Dockerfile
1 parent 31b6a52 commit 08951c5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
FROM bioconductor/bioconductor_docker:devel
2+
3+
WORKDIR /home/rstudio
4+
5+
COPY --chown=rstudio:rstudio . /home/rstudio/
6+
7+
RUN Rscript -e "options(repos = c(CRAN = 'https://cran.r-project.org')); BiocManager::install(ask=FALSE)"
8+
9+
RUN Rscript -e "BiocManager::install(c('stemangiola/tidySingleCellExperiment@v1.7.2'))"
10+
11+
RUN Rscript -e "options(repos = c(CRAN = 'https://cran.r-project.org')); devtools::install('.', dependencies=TRUE, build_vignettes=TRUE, repos = BiocManager::repositories())"

0 commit comments

Comments
 (0)