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
44 lines
1.3 KiB
Django/Jinja
44 lines
1.3 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% block murano_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='murano') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
{% if base_distro in ['centos', 'oraclelinux', 'rhel'] %}
|
|
{% set murano_base_packages = ['openstack-murano-common'] %}
|
|
{% elif base_distro in ['ubuntu'] %}
|
|
{% set murano_base_packages = ['murano-common'] %}
|
|
{% endif %}
|
|
|
|
{{ macros.install_packages(murano_base_packages | customizable("packages")) }}
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD murano-base-archive /murano-base-source
|
|
|
|
{% set murano_base_pip_packages = [
|
|
'/murano'
|
|
] %}
|
|
|
|
RUN ln -s murano-base-source/* murano \
|
|
&& {{ macros.install_pip(murano_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/murano \
|
|
&& cp -r /murano/etc/murano/* /etc/murano/ \
|
|
&& chown -R murano: /etc/murano \
|
|
&& cd murano/meta/io.murano \
|
|
&& zip -r /io.murano.zip *
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
RUN touch /usr/local/bin/kolla_murano_extend_start \
|
|
&& chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_murano_extend_start
|
|
|
|
{% block murano_base_footer %}{% endblock %}
|