Eduardo Gonzalez a159c686d7 Fix zun images
Zun uses wsgi to start process.
Rework zun-base image to make use of wsgi.
Create zun user with macros to maintain static uids.
Zun compute need root to connect docker

Change-Id: Idd417e1b804148543ee5f403a836fa1f3e6f7fb0
Closes-Bug: #1682142
2017-04-20 09:03:04 +01:00

15 lines
350 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}zun-base:{{ tag }}
MAINTAINER {{ maintainer }}
{% block zun_compute_header %}{% endblock %}
{% if install_type == 'binary' %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
{% block zun_compute_footer %}{% endblock %}
{% block footer %}{% endblock %}