2015-09-17 09:35:33 -07:00
|
|
|
FROM {{ namespace }}/{{ image_prefix }}murano-base:{{ tag }}
|
2015-11-23 12:38:58 +05:30
|
|
|
MAINTAINER {{ maintainer }}
|
2015-08-16 14:48:58 -07:00
|
|
|
|
2016-01-14 15:33:27 +01:00
|
|
|
{% if install_type == 'binary' %}
|
2016-05-17 11:59:53 +05:30
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
|
|
|
|
RUN yum -y install \
|
|
|
|
openstack-murano-api \
|
|
|
|
&& yum clean all
|
|
|
|
|
|
|
|
{% elif base_distro in ['ubuntu'] %}
|
2016-01-14 15:33:27 +01:00
|
|
|
|
2016-05-17 10:04:59 +05:30
|
|
|
RUN apt-get -y install --no-install-recommends \
|
2016-01-14 15:33:27 +01:00
|
|
|
murano-api \
|
|
|
|
&& apt-get clean
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
|
2016-02-24 12:10:22 +01:00
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_murano_extend_start
|
|
|
|
RUN chmod 755 /usr/local/bin/kolla_murano_extend_start
|
2015-08-28 13:17:41 +03:00
|
|
|
|
|
|
|
{{ include_footer }}
|
2015-11-30 11:35:18 +05:30
|
|
|
|
|
|
|
USER murano
|