diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-01-16 16:36:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-16 16:36:21 -0500 |
commit | 0c0efec5bc5aebb2d1601c379cdbf23dd69ace7b (patch) | |
tree | 06f4f4226630f36c9c23c2ca4cdd8b0e578d6cef /images/installer | |
parent | 9424e6ffe7919c9651e860fe606895c7ab6b7ca8 (diff) | |
parent | f790cbb89a7f77aad47dc17a258e7b94723c4e66 (diff) | |
download | openshift-0c0efec5bc5aebb2d1601c379cdbf23dd69ace7b.tar.gz openshift-0c0efec5bc5aebb2d1601c379cdbf23dd69ace7b.tar.bz2 openshift-0c0efec5bc5aebb2d1601c379cdbf23dd69ace7b.tar.xz openshift-0c0efec5bc5aebb2d1601c379cdbf23dd69ace7b.zip |
Merge pull request #6498 from joelddiaz/origin-ansible-boto3
add python2-boto3 for centos-based origin-ansible container image
Diffstat (limited to 'images/installer')
-rw-r--r-- | images/installer/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/installer/Dockerfile b/images/installer/Dockerfile index db362bd65..b1390480a 100644 --- a/images/installer/Dockerfile +++ b/images/installer/Dockerfile @@ -10,7 +10,7 @@ COPY images/installer/origin-extra-root / # install ansible and deps RUN INSTALL_PKGS="python-lxml pyOpenSSL python2-cryptography openssl java-1.8.0-openjdk-headless python2-passlib httpd-tools openssh-clients origin-clients" \ && yum install -y --setopt=tsflags=nodocs $INSTALL_PKGS \ - && EPEL_PKGS="ansible python2-boto google-cloud-sdk-183.0.0 which" \ + && EPEL_PKGS="ansible python2-boto python2-boto3 google-cloud-sdk-183.0.0 which" \ && yum install -y epel-release \ && yum install -y --setopt=tsflags=nodocs $EPEL_PKGS \ && rpm -V $INSTALL_PKGS $EPEL_PKGS \ |