-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
30 lines (26 loc) · 1.02 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
FROM lambci/lambda:build-provided
RUN yum install -q -y wget \
readline-devel \
xorg-x11-server-devel libX11-devel libXt-devel \
curl-devel \
gcc-c++ gcc-gfortran \
zlib-devel bzip2 bzip2-libs \
java-1.8.0-openjdk-devel
ARG VERSION=3.6.0
ARG R_DIR=/opt/R/
RUN wget -q https://cran.r-project.org/src/base/R-3/R-${VERSION}.tar.gz && \
mkdir ${R_DIR} && \
tar -xf R-${VERSION}.tar.gz && \
mv R-${VERSION}/* ${R_DIR} && \
rm R-${VERSION}.tar.gz
WORKDIR ${R_DIR}
RUN ./configure --prefix=${R_DIR} --exec-prefix=${R_DIR} --with-libpth-prefix=/opt/ --enable-R-shlib && \
make && \
cp /usr/lib64/libgfortran.so.3 lib/ && \
cp /usr/lib64/libgomp.so.1 lib/ && \
cp /usr/lib64/libquadmath.so.0 lib/ && \
cp /usr/lib64/libstdc++.so.6 lib/
RUN yum install -q -y openssl-devel libxml2-devel && \
./bin/Rscript -e 'install.packages(c("httr", "aws.s3", "logging"), repos="http://cran.r-project.org")'
CMD mkdir -p /var/r/ && \
cp -r bin/ lib/ etc/ library/ doc/ modules/ share/ /var/r/