5b45d47369
This patchset contains customization of Dockerfile of magnum containers Change-Id: I0655cab1f1fc12bc109a49a20874170b5a99125e Partially-implements: blueprint third-party-plugin-support Signed-off-by: Eduardo Gonzalez <dabarren@gmail.com>
22 lines
743 B
Django/Jinja
22 lines
743 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}magnum-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
{% set magnum_api_packages = ['openstack-magnum-api'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set magnum_api_packages = ['magnum-api'] %}
|
|
{% endif %}
|
|
RUN {{ macros.install_packages(magnum_api_packages | customizable("packages")) }}
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_magnum_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_magnum_extend_start
|
|
|
|
{% block magnum_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|
|
|
|
USER magnum
|