diff options
author | Joel Diaz <jdiaz@redhat.com> | 2017-12-15 14:58:26 -0500 |
---|---|---|
committer | Joel Diaz <jdiaz@redhat.com> | 2018-01-02 15:29:31 -0500 |
commit | f790cbb89a7f77aad47dc17a258e7b94723c4e66 (patch) | |
tree | 735508985c7c21ec873936d695286d8284282325 /images/installer/Dockerfile | |
parent | a327ab37e12f71625d3a4b0714c726dc5ac5f942 (diff) | |
download | openshift-f790cbb89a7f77aad47dc17a258e7b94723c4e66.tar.gz openshift-f790cbb89a7f77aad47dc17a258e7b94723c4e66.tar.bz2 openshift-f790cbb89a7f77aad47dc17a258e7b94723c4e66.tar.xz openshift-f790cbb89a7f77aad47dc17a258e7b94723c4e66.zip |
add python2-boto3 package for centos-based origin-ansible container image
There are modules in openshift-ansible that depend on boto3 (I see lib_utils/library/oo_iam_kms and lib_utils/library/oo_ec2_group). Add the dependency so that the origin-ansible container can succesfully run these modules.
Diffstat (limited to 'images/installer/Dockerfile')
-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 \ |