2015-09-17 09:35:33 -07:00
|
|
|
FROM {{ namespace }}/{{ image_prefix }}nova-base:{{ tag }}
|
2015-08-16 03:30:08 +00:00
|
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
|
|
|
|
{% if install_type == 'binary' %}
|
2015-09-04 02:15:03 -07:00
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
2015-08-16 03:30:08 +00:00
|
|
|
|
|
|
|
RUN yum -y install openstack-nova-api \
|
|
|
|
&& yum clean all
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2015-09-30 11:23:39 +00:00
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
2015-08-28 13:17:41 +03:00
|
|
|
|
|
|
|
{{ include_footer }}
|