961224c6cf
1. Enable customization of pip packages in source branch of most images 2. All pip packages install uniformly through install-pip macro, user can easily customize his own pip command (For example using a mirror) Co-Authored-By: Mauricio Lima <mauriciolimab@gmail.com> Change-Id: If09582039f690fa4136e8f33200d5da15e092da7
39 lines
1.2 KiB
Django/Jinja
39 lines
1.2 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block mistral_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='mistral') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set mistral_base_packages = ['openstack-mistral-common'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set mistral_base_packages = ['mistral-common'] %}
|
|
{% endif %}
|
|
{{ macros.install_packages(mistral_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD mistral-base-archive /mistral-base-source
|
|
|
|
{% set mistral_base_pip_packages = [
|
|
'/mistral'
|
|
] %}
|
|
|
|
RUN ln -s mistral-base-source/* mistral \
|
|
&& {{ macros.install_pip(mistral_base_pip_packages | customizable("pip_packages"), constraints = false) }} \
|
|
&& mkdir -p /etc/mistral \
|
|
&& cp -r /mistral/etc/* /etc/mistral/ \
|
|
&& chown -R mistral: /etc/mistral
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN touch /usr/local/bin/kolla_mistral_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_mistral_extend_start
|