jiangpch bedb106fad add zun-wsproxy image
zun needs to start zun-wsproxy service to provide the container attach
feature(the container console on horizon), so a standalone docker image
is required.

Change-Id: I24d1b4a7b63c3bc86705269bda50fa2e3bdb9fab
2017-09-27 04:23:32 -04:00

15 lines
412 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}zun-base:{{ tag }}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% block zun_wsproxy_header %}{% endblock %}
{% if install_type == 'binary' %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
{% block zun_wsproxy_footer %}{% endblock %}
{% block footer %}{% endblock %}