-
Notifications
You must be signed in to change notification settings - Fork 3
/
Dockerfile
147 lines (141 loc) · 5.11 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
## Emacs, make this -*- mode: sh; -*-
FROM rocker/r2u:latest
LABEL org.label-schema.license="GPL-2.0" \
org.label-schema.vcs-url="https://github.com/rocker-org/drd" \
org.label-schema.vendor="Rocker Project" \
maintainer="Dirk Eddelbuettel <[email protected]>"
## Needed in case a base package has an interactive question
## (as e.g. base-passwd in Oct 2020)
ENV DEBIAN_FRONTEND noninteractive
## From the Build-Depends of the Debian R package, plus subversion
## Check out R-devel
## Build and install according the standard 'recipe' I emailed/posted years ago
## Set Renviron.site to get libs from base R install
## Clean up
## -- all in one command to get a single AUFS layer
RUN apt-get update -qq \
&& apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends \
bash-completion \
bison \
debhelper \
default-jdk \
g++ \
gcc \
gfortran \
groff-base \
libblas-dev \
libbz2-dev \
libcairo2-dev \
libcurl4-openssl-dev \
libfreetype-dev \
libharfbuzz-dev \
libjpeg-dev \
liblapack-dev \
liblzma-dev \
libncurses-dev \
libpango1.0-dev \
libpcre2-dev \
libpng-dev \
libreadline-dev \
libtiff5-dev \
libx11-dev \
libxcb1-dev \
libxdmcp-dev \
libxt-dev \
mpack \
subversion \
tcl-dev \
texinfo \
texlive-base \
texlive-fonts-recommended \
texlive-plain-generic \
texlive-latex-base \
texlive-latex-recommended \
tk-dev \
x11proto-core-dev \
xauth \
xdg-utils \
xfonts-base \
xvfb \
zlib1g-dev \
&& cd /tmp \
&& wget https://stat.ethz.ch/R/daily/R-devel.tar.xz \
&& tar xaf R-devel.tar.xz \
&& rm R-devel.tar.xz \
&& cd /tmp/R-devel \
&& R_PAPERSIZE=letter \
R_BATCHSAVE="--no-save --no-restore" \
R_BROWSER=xdg-open \
PAGER=/usr/bin/pager \
PERL=/usr/bin/perl \
R_UNZIPCMD=/usr/bin/unzip \
R_ZIPCMD=/usr/bin/zip \
R_PRINTCMD=/usr/bin/lpr \
LIBnn=lib \
AWK=/usr/bin/awk \
CFLAGS=$(R CMD config CFLAGS) \
CXXFLAGS=$(R CMD config CXXFLAGS) \
FFLAGS=$(R CMD config FFLAGS) \
./configure --enable-R-shlib \
--enable-memory-profiling \
--with-blas \
--with-lapack \
--with-readline \
--without-recommended-packages \
&& cd /tmp/R-devel \
&& make \
&& make install \
&& cd /tmp \
&& rm -rf /tmp/R-devel /tmp/downloaded_packages/ /tmp/*.rds \
&& echo "R_LIBS=\${R_LIBS-'/usr/local/lib/R/site-library:/usr/local/lib/R/library:/usr/lib/R/site-library:/usr/lib/R/library'}" >> /usr/local/lib/R/etc/Renviron \
&& /usr/local/bin/R -e 'install.packages("littler", lib="/usr/local/lib/R/site-library", repos="https://cloud.r-project.org")' \
&& cd /usr/local/bin \
&& cp -vax /usr/local/lib/R/site-library/littler/bin/r . \
&& for f in build.r check.r install2.r installBioc.r installDeps.r installGithub.r install.r installRub.r testInstalled.r update.r; do ln -sf /usr/local/lib/R/site-library/littler/examples/$f .; done \
&& cd /usr/local/lib/R/etc/ && ln -sf /etc/R/Rprofile.site . \
&& cd /usr/local/bin \
&& mv R Rdevel \
&& mv Rscript Rscriptdevel \
&& ln -s Rdevel RD \
&& ln -s Rscriptdevel RDscript \
&& rm -f /usr/share/fonts/type1/texlive-fonts-recommended/.uuid \
&& rm -f /usr/share/fonts/type1/.uuid \
&& apt-get purge -qy \
libblas-dev \
libbz2-dev \
libcairo2-dev \
libfontconfig-dev \
libfontconfig1-dev \
libfreetype-dev \
libglib2.0-dev \
libharfbuzz-dev \
libicu-dev \
libjpeg-dev \
liblapack-dev \
liblzma-dev \
libncurses-dev \
libpango1.0-dev \
libpcre2-dev \
libpng-dev \
libreadline-dev \
libtiff-dev \
libtiff5-dev \
libxft-dev \
r-base-dev \
tcl-dev \
tcl8.6-dev \
texlive-base \
texlive-fonts-recommended \
texlive-plain-generic \
texlive-latex-base \
texlive-latex-recommended \
texlive-plain-generic \
tk-dev \
tk8.6-dev \
&& apt-get autoremove -qy \
&& rm -rf /tmp/R-devel
## Copy 'checkbashisms' (as a local copy from devscripts package)
COPY checkbashisms /usr/local/bin
## Launch R-devel by defailt
CMD ["RD"]