diff --git a/docker/centos/binary/base/Dockerfile b/docker/centos/binary/base/Dockerfile index c929d7a55b..60f56aee39 100644 --- a/docker/centos/binary/base/Dockerfile +++ b/docker/centos/binary/base/Dockerfile @@ -101,7 +101,10 @@ RUN yum install -y \ python-webtest \ python-werkzeug \ python-wsme \ - && yum clean all + && yum clean all \ + && pip install oslo.service +# TODO(inc0): when oslo_service lands in delorean, change pip to yum +# necessary until https://bugzilla.redhat.com/show_bug.cgi?id=1229477 is fixed # This is dirty like zebra. This works around a bug in Ubuntu 14.04 LTS. The # --net=host option does not work on ubuntu 14.04 because of a kernel bug. One diff --git a/docker/centos/binary/heat/heat-base/Dockerfile b/docker/centos/binary/heat/heat-base/Dockerfile index 4dc854d712..7321ca8a63 100755 --- a/docker/centos/binary/heat/heat-base/Dockerfile +++ b/docker/centos/binary/heat/heat-base/Dockerfile @@ -1,9 +1,7 @@ FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%% MAINTAINER Kolla Project (https://launchpad.net/kolla) -# TODO(inc0): when oslo_service lands in delorean, change pip to yum -# necessary until https://bugzilla.redhat.com/show_bug.cgi?id=1229477 is fixed -RUN yum -y install python-oslo-policy && yum clean all && pip install oslo.service +RUN yum -y install python-oslo-policy && yum clean all RUN mkdir -p /opt/kolla COPY config-heat.sh /opt/kolla/config-heat.sh