diff options
author | Joel Diaz <jdiaz@redhat.com> | 2018-01-23 09:53:32 -0500 |
---|---|---|
committer | Joel Diaz <jdiaz@redhat.com> | 2018-01-23 09:53:32 -0500 |
commit | f7fb62ac1a9ce82bd4c64c0d4fb1b6d32b2eb45a (patch) | |
tree | c561acaa3c6cfb9c011138b4434d999316344be9 /images | |
parent | 710f368cd1512613fe6f4cdcfd613589e9cfb296 (diff) | |
download | openshift-f7fb62ac1a9ce82bd4c64c0d4fb1b6d32b2eb45a.tar.gz openshift-f7fb62ac1a9ce82bd4c64c0d4fb1b6d32b2eb45a.tar.bz2 openshift-f7fb62ac1a9ce82bd4c64c0d4fb1b6d32b2eb45a.tar.xz openshift-f7fb62ac1a9ce82bd4c64c0d4fb1b6d32b2eb45a.zip |
update Dockerfile to add boto3 dependency
The centos-based Dockerfile has previously been updated to pull in the python2-boto3 RPM; update the RHEL-based Dockerfile to do the same now that python2-boto3 has been made available in the appropriate repo.
Diffstat (limited to 'images')
-rw-r--r-- | images/installer/Dockerfile.rhel7 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/installer/Dockerfile.rhel7 b/images/installer/Dockerfile.rhel7 index 05df6b43a..3b05c1aa6 100644 --- a/images/installer/Dockerfile.rhel7 +++ b/images/installer/Dockerfile.rhel7 @@ -5,7 +5,7 @@ MAINTAINER OpenShift Team <dev@lists.openshift.redhat.com> USER root # Playbooks, roles, and their dependencies are installed from packages. -RUN INSTALL_PKGS="atomic-openshift-utils atomic-openshift-clients python-boto openssl java-1.8.0-openjdk-headless httpd-tools google-cloud-sdk" \ +RUN INSTALL_PKGS="atomic-openshift-utils atomic-openshift-clients python-boto python2-boto3 openssl java-1.8.0-openjdk-headless httpd-tools google-cloud-sdk" \ && yum repolist > /dev/null \ && yum-config-manager --enable rhel-7-server-ose-3.7-rpms \ && yum-config-manager --enable rhel-7-server-rh-common-rpms \ |