From d4d7e9fda1aa51d4732dbca7d0848a7588a51659 Mon Sep 17 00:00:00 2001 From: Ryan Hallisey Date: Fri, 26 Jun 2015 09:56:16 -0400 Subject: [PATCH] The Cinder API container requires python-keystone package This package was not required until now. The Cinder API may have gone through some changes recentrly to now require this package. Change-Id: Id3eac9716d11213fec0af6dff11fbec1e3045550 Closes-bug: #1469182 --- docker/centos/binary/cinder-app/cinder-api/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/centos/binary/cinder-app/cinder-api/Dockerfile b/docker/centos/binary/cinder-app/cinder-api/Dockerfile index 6fcb41eecc..3d3e3ae8f6 100644 --- a/docker/centos/binary/cinder-app/cinder-api/Dockerfile +++ b/docker/centos/binary/cinder-app/cinder-api/Dockerfile @@ -1,6 +1,7 @@ FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%cinder-base:%%KOLLA_TAG%% MAINTAINER Kolla Project (https://launchpad.net/kolla) +RUN yum install -y python-keystone && yum clean all COPY ./start.sh ./check.sh / CMD ["/start.sh"]