Merge pull request #57 from rstudio/fix-centos6
Fix AWS CLI on CentOS 6
This commit is contained in:
commit
9bc417572e
1 changed files with 3 additions and 3 deletions
|
|
@ -37,8 +37,8 @@ RUN yum -y update \
|
|||
pcre-devel \
|
||||
pcre2-devel \
|
||||
pkgconfig \
|
||||
python \
|
||||
python-pip \
|
||||
python34 \
|
||||
python34-pip \
|
||||
readline-devel \
|
||||
rpm-build \
|
||||
stunnel \
|
||||
|
|
@ -53,7 +53,7 @@ RUN yum -y update \
|
|||
&& yum clean all
|
||||
|
||||
# Install AWS CLI.
|
||||
RUN pip install awscli --upgrade --user && \
|
||||
RUN pip3 install awscli --upgrade --user && \
|
||||
ln -s /root/.local/bin/aws /usr/bin/aws
|
||||
|
||||
RUN chmod 0777 /opt
|
||||
|
|
|
|||
Loading…
Reference in a new issue