diff --git a/docker/nova-compute/nova-compute/Dockerfile b/docker/nova-compute/nova-compute/Dockerfile index 3f14566b4e..2b519a3433 100644 --- a/docker/nova-compute/nova-compute/Dockerfile +++ b/docker/nova-compute/nova-compute/Dockerfile @@ -3,20 +3,21 @@ MAINTAINER Steven Dake # broken out by operation - we don't need libvirt and # 200 deps for libguestfs (?) -RUN yum -y install curl -RUN yum -y install iscsi-initiator-utils -RUN yum -y install iptables -RUN yum -y install iptables-ipv6 -RUN yum -y install ipmitool -RUN yum -y install libvirt-python -RUN yum -y install python-libguestfs -RUN yum -y install openssh-clients -RUN yum -y install rsync -RUN yum -y install lvm2 -RUN yum -y install python-cinderclient -RUN yum -y install genisoimage -RUN yum -y install bridge-utils -RUN yum -y install openstack-nova-compute +RUN yum -y install curl \ + iscsi-initiator-utils \ + iptables \ + iptables-ipv6 \ + ipmitool \ + libvirt-python \ + python-libguestfs \ + openssh-clients \ + rsync \ + lvm2 \ + python-cinderclient \ + genisoimage \ + bridge-utils \ + openstack-nova-compute \ + ; yum clean all ADD ./start.sh /start.sh CMD ["/start.sh"]