diff --git a/docker/centos/binary/base/Dockerfile b/docker/centos/binary/base/Dockerfile
index c929d7a55bc093f118f656713eb44aa817e16916..60f56aee392844a9153ea59053b0a7c0a97c4575 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 4dc854d712fc512fc21a59fbc1e7d44e54213528..7321ca8a6385a62be5d915fd77a407cb8773f0f5 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