
This moves nova-ctr-base one level up and renames it nova-base, so that we can share the same basic config between compute and controller pods. Change-Id: I325f70c278744a1e1fe99b891e05c59c4248c55f
9 lines
200 B
Docker
9 lines
200 B
Docker
FROM kollaglue/fedora-rdo-nova-base
|
|
MAINTAINER Ryan Hallisey <rhallisey@redhat.com>
|
|
|
|
RUN yum -y install \
|
|
openstack-nova-conductor && yum clean all
|
|
|
|
ADD ./start.sh /start.sh
|
|
CMD ["/start.sh"]
|