ae1322ec10
This change updates the docker files to use base_package_type instead of doing specific distro checks for the rhel/deb generic cases. The base_distro is still available and is used when a specific distro needs a customization but if the differences are purely rpm vs deb, then the base_package_type can be used. Change-Id: I8d720bb185df65a0178061ccf20b1ab2265da2c5
69 lines
2.0 KiB
Django/Jinja
69 lines
2.0 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
|
|
{% block crane_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
{% if base_distro in ['centos', 'rhel'] %}
|
|
|
|
{% set crane_packages = [
|
|
'httpd',
|
|
'mod_ssl',
|
|
'mod_wsgi',
|
|
'mod_xsendfile',
|
|
'python-crane'
|
|
] %}
|
|
|
|
{{ macros.install_packages(crane_packages | customizable("packages")) }}
|
|
|
|
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
|
|
&& sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf
|
|
|
|
{% else %}
|
|
RUN echo 'crane not yet available for {{ base_distro }}' && /bin/false
|
|
{% endif %}
|
|
|
|
{% elif install_type == 'source' %}
|
|
{% if base_package_type == 'rpm' %}
|
|
{% set crane_packages = [
|
|
'httpd',
|
|
'mod_ssl',
|
|
'mod_wsgi',
|
|
'mod_xsendfile',
|
|
'python-flask'
|
|
] %}
|
|
|
|
{{ macros.install_packages(crane_packages | customizable("packages")) }}
|
|
|
|
RUN sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf \
|
|
&& sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf
|
|
|
|
{% elif base_package_type == 'deb' %}
|
|
RUN echo 'crane not yet available for {{ base_distro }}' && /bin/false
|
|
{% endif %}
|
|
|
|
{% block crane_source_install_python_pip %}
|
|
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
|
|
&& python get-pip.py \
|
|
&& rm get-pip.py
|
|
{% endblock %}
|
|
|
|
ADD crane-archive /crane-source
|
|
|
|
{% set crane_pip_packages = [
|
|
'/crane'
|
|
] %}
|
|
|
|
RUN ln -s crane-source/* crane \
|
|
&& {{ macros.install_pip(crane_pip_packages | customizable("pip_packages"), constraints=false) }}
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block crane_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|