-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
27 lines (20 loc) · 868 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
FROM rocker/verse
MAINTAINER Kevin Chau "[email protected]"
RUN apt-get update && apt-get install -y \
apt-transport-https \
libcurl4-openssl-dev \
libssl-dev \
libv8-3.14-dev \
libzmq3-dev
RUN R -e "install.packages(c('matrixStats', 'Hmisc', 'splines', \
'foreach', 'doParallel', 'fastcluster', \
'dynamicTreeCut', 'survival', 'viridisLite', \
'enrichR', 'tidyverse'), \
repos='https://cran.cnr.berkeley.edu')"
RUN R -e "source('https://bioconductor.org/biocLite.R'); \
biocLite(c('GO.db', 'preprocessCore', 'imput', \
'WGCNA', 'SummarizedExperiment'))"
RUN mkdir /home/rstudio/work
ADD data /home/rstudio/data
ADD docs/CoExNetworks.Rmd /home/rstudio/CoExNetworks.Rmd
WORKDIR /home/rstudio/work