Skip to content
Snippets Groups Projects

fix docker

Merged Dominik Brilhaus requested to merge addfactor into main
1 file
+ 2
4
Compare changes
  • Side-by-side
  • Inline
FROM quay.io/biocontainers/bioconductor-deseq2:1.42.0--r43hf17093f_2
FROM rstudio/r-base:4.3-jammy
# Since our base image is an R docker base we will use BiocManager install
RUN apt-get update && \
RUN apt-get update && \
R -e "install.packages(c('BiocManager'), repos='https://cloud.r-project.org/');BiocManager::install('tximport')" && \
R -e "install.packages(c('BiocManager'), repos='https://cloud.r-project.org/'); BiocManager::install('DESeq2'); BiocManager::install('tximport'); BiocManager::install('rhdf5'); \\" && \
apt-get clean -y
apt-get clean -y
 
\ No newline at end of file
Loading