FROM {{ namespace }}/{{ image_prefix }}mistral-base:{{ tag }} MAINTAINER {{ maintainer }} {% import "macros.j2" as macros with context %} {% if install_type == 'binary' %} {% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %} {% set mistral_executor_packages = ['openstack-mistral-executor'] %} {% elif base_distro in ['ubuntu'] %} {% set mistral_executor_packages = ['mistral-executor'] %} {% endif %} {{ macros.install_packages(mistral_executor_packages | customizable("packages")) }} {% endif %} {% block mistral_executor_footer %}{% endblock %} {% block footer %}{% endblock %} {{ include_footer }} USER mistral