Minor fixes for the nova-controller Dockerfile

Instead of multiple install commands, add multiple packages
into a single install.

Change-Id: Id27cb53da76df50bf2500eb2d6de18c7401e5c6c
This commit is contained in:
Ryan Hallisey 2014-10-13 23:52:55 +00:00
parent 5192dd9506
commit 5dd0e4d958

View File

@ -2,7 +2,8 @@ FROM kollaglue/fedora-rdo-base
MAINTAINER Ryan Hallisey <rhallisey@redhat.com>
RUN yum -y install openstack-nova-common \
install python-keystoneclient \
install python-nova \
install python-oslo-messaging \
install python-websockify && yum clean all
python-keystoneclient \
python-nova && yum clean all
ADD ./start.sh /start.sh
CMD ["/start.sh"]