kolla/docker/zaqar/zaqar-wsgi/Dockerfile.j2
Kien Nguyen cf2b2b55b6 Update Zaqar image
Follow Zaqar installation documentation [1]

[1] https://docs.openstack.org/zaqar/latest/install/

Change-Id: Ic356fb81c19ebbc78aa3c7e871c4946d1f712a45
Implements: blueprint ansible-zaqar
2018-11-12 02:15:38 +00:00

13 lines
438 B
Django/Jinja

FROM {{ namespace }}/{{ image_prefix }}zaqar-base:{{ tag }}
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
{% block zaqar_wsgi_header %}{% endblock %}
{% import "macros.j2" as macros with context %}
COPY extend_start.sh /usr/local/bin/kolla_zaqar_extend_start
RUN chmod 755 /usr/local/bin/kolla_zaqar_extend_start
{% block zaqar_wsgi_footer %}{% endblock %}
{% block footer %}{% endblock %}