Merge "Fast fail unsupported murano-base install types"

This commit is contained in:
Jenkins 2015-12-15 16:41:05 +00:00 committed by Gerrit Code Review
commit 8cf1563a76

@ -1,7 +1,12 @@
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% if install_type == 'source' %}
{% if install_type == 'binary' %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% elif install_type == 'source' %}
ADD murano-base-archive /murano-base-source
RUN ln -s murano-base-source/* murano \