From 314b6d4c3ccf769aa7699583b8f8c86f09e6766b Mon Sep 17 00:00:00 2001 From: Jeff Peeler Date: Fri, 22 May 2015 17:43:23 -0400 Subject: [PATCH] Remove unnecessary dependencies Glance RPM has been confirmed to depend on python-oslo-log and python-oslo-policy, so remove explicit package installs. Change-Id: Ia390b4ff1b57a079032e1f3fb2403b9fb78f038f --- docker/centos/binary/glance/glance-base/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker/centos/binary/glance/glance-base/Dockerfile b/docker/centos/binary/glance/glance-base/Dockerfile index dcd70678dd..72eed17630 100644 --- a/docker/centos/binary/glance/glance-base/Dockerfile +++ b/docker/centos/binary/glance/glance-base/Dockerfile @@ -1,10 +1,7 @@ FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%% MAINTAINER Kolla Project (https://launchpad.net/kolla) -# We really shouldn't need to install python-oslo-log or python-oslo-policy -# See: https://bugzilla.redhat.com/show_bug.cgi?id=1218349 -RUN yum -y install openstack-glance python-oslo-log python-oslo-policy && yum clean all +RUN yum -y install openstack-glance && yum clean all RUN mkdir -p /opt/kolla COPY config-glance.sh /opt/kolla/config-glance.sh -