diff options
author | Tim Bielawa <timbielawa@gmail.com> | 2017-04-28 12:41:09 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-28 12:41:09 -0400 |
commit | d8a70bbd179c59e121a652f2b590f65ed7889eab (patch) | |
tree | 9d8c16df98ac710f1624acb5afc6f0d8be44fc82 /Dockerfile.rhel7 | |
parent | 7de281c7a8ddfcde6b416e3c4b0b2abb6c6c67a7 (diff) | |
parent | b23be0da38759744cebc8d4b454af1299d97a445 (diff) | |
download | openshift-d8a70bbd179c59e121a652f2b590f65ed7889eab.tar.gz openshift-d8a70bbd179c59e121a652f2b590f65ed7889eab.tar.bz2 openshift-d8a70bbd179c59e121a652f2b590f65ed7889eab.tar.xz openshift-d8a70bbd179c59e121a652f2b590f65ed7889eab.zip |
Merge branch 'master' into contrib_pre-commit_hook
Diffstat (limited to 'Dockerfile.rhel7')
-rw-r--r-- | Dockerfile.rhel7 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile.rhel7 b/Dockerfile.rhel7 index 0d5a6038a..c5a95f586 100644 --- a/Dockerfile.rhel7 +++ b/Dockerfile.rhel7 @@ -20,9 +20,10 @@ LABEL name="openshift3/openshift-ansible" \ # because all content and dependencies (like 'oc') is already # installed via yum. USER root -RUN INSTALL_PKGS="atomic-openshift-utils atomic-openshift-clients" && \ +RUN INSTALL_PKGS="atomic-openshift-utils atomic-openshift-clients python-boto" && \ yum repolist > /dev/null && \ yum-config-manager --enable rhel-7-server-ose-3.4-rpms && \ + yum-config-manager --enable rhel-7-server-rh-common-rpms && \ yum install -y $INSTALL_PKGS && \ yum clean all |