-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
54 lines (49 loc) · 1.18 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
FROM rocker/rstudio
MAINTAINER "Davide Albanese" <[email protected]>
# Install latex for RStudio notebook (e.g. PDF output) end other packages
RUN apt-get update \
&& apt-get install -t unstable -y --no-install-recommends \
libfftw3-dev \
libtiff5-dev \
texlive-latex-base
# Install packages for RStudio notebook
RUN install2.r --error \
-r "https://cran.rstudio.com" \
-r "http://www.bioconductor.org/packages/release/bioc" \
bitops \
caTools \
digest \
evaluate \
formatR \
highr \
knitr \
htmltools \
markdown \
rmarkdown \
yaml
# Install required packages
RUN install2.r --error \
-r "https://cran.rstudio.com" \
-r "http://www.bioconductor.org/packages/release/bioc" \
EBImage
# Install compmetagen packages
RUN install2.r --error \
-r "https://cran.rstudio.com" \
-r "http://www.bioconductor.org/packages/release/bioc" \
corrplot \
cowplot \
dplyr \
ggplot2 \
ggtern \
ggtree \
gridExtra \
phyloseq \
plyr \
psych \
RColorBrewer \
reshape2 \
vegan
# Clean
RUN apt-get clean \
&& rm -rf /tmp/downloaded_packages/* \
&& rm -rf /var/lib/apt/lists/*