Add R 4.0 support for CentOS 6, Debian, SUSE

This commit is contained in:
Greg Lin 2020-04-28 12:10:17 -05:00
commit 38383b74c3

View file

@ -3,6 +3,7 @@ FROM centos:centos6
ENV OS_IDENTIFIER centos-6
RUN yum -y update \
&& yum -y install epel-release \
&& yum -y install \
bzip2-devel \
cairo-devel \
@ -34,8 +35,10 @@ RUN yum -y update \
openssl-devel \
pango-devel \
pcre-devel \
pcre2-devel \
pkgconfig \
python \
python-pip \
readline-devel \
rpm-build \
stunnel \
@ -49,10 +52,6 @@ RUN yum -y update \
zlib-devel \
&& yum clean all
# Install pip
RUN yum install -y epel-release && \
yum install -y python-pip
# Install AWS CLI.
RUN pip install awscli --upgrade --user && \
ln -s /root/.local/bin/aws /usr/bin/aws