-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile_016
More file actions
21 lines (14 loc) · 833 Bytes
/
Dockerfile_016
File metadata and controls
21 lines (14 loc) · 833 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# This docker image is meant for the analysis of high dimensionality flow data with CONDOR v0.1.6
# I start from the Bioconductor 3.17 image with RStudio Server
FROM lorenzobonaguro/cycondor:v015
# Add new packages
## Bioconductor
RUN Rscript -e 'BiocManager::install(c("diffcyt", "ggridges"), version = "3.17")'
## Github
RUN Rscript -e 'devtools::install_github("saeyslab/CytoNorm@362ac08")'
RUN Rscript -e 'devtools::install_github("immunogenomics/lisi")'
# install CONDOR v0.1.6
COPY cyCONDOR_0.1.6.tar.gz /tmp/cyCONDOR_0.1.6.tar.gz
RUN Rscript -e 'install.packages("/tmp/cyCONDOR_0.1.6.tar.gz", repos = NULL, type = "source")'
# example to run this docker image
# docker run -dp 8787:8787 -e USER=mariorossi -e PASSWORD=mariorossi --name fc_analysis -v /mnt/e/docker_test:/home/lorenzo/data/ lorenzobonaguro/condor:v014