[d3ea1f]: / Dockerfile

Download this file

13 lines (8 with data), 465 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
FROM bioconductor/bioconductor_docker:devel
WORKDIR /home/rstudio
COPY --chown=rstudio:rstudio . /home/rstudio/
RUN apt-get update && \
apt-get install -y libglpk-dev && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN Rscript -e "options(repos = c(CRAN = 'https://cloud.r-project.org')); BiocManager::install(update = TRUE, ask = FALSE); devtools::install('.', dependencies = TRUE, repos = BiocManager::repositories(), build_vignettes = TRUE)"