4d6840c2a5
This patchset contains customization of Dockerfile of Senlin containers Change-Id: I0f8269f5eff1ccf6881d46f6082830f3e586d945 Partially-implements: blueprint third-party-plugin-support Signed-off-by: Eduardo Gonzalez <dabarren@gmail.com>
16 lines
343 B
Django/Jinja
16 lines
343 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}senlin-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% endif %}
|
|
|
|
{% block senlin_engine_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER senlin
|