5bdf514645
Refactor installing and initial setup of httpd and mod wsgi from individual services to base image. Change-Id: I651a55a9ebe258ef403d33de010a4dfb368a4021
26 lines
773 B
Django/Jinja
26 lines
773 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}cyborg-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block cyborg_api_header %}{% endblock %}
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
{% set cyborg_api_packages = [
|
|
] %}
|
|
{{ macros.install_packages(cyborg_api_packages | customizable("packages")) }}
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_cyborg_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_cyborg_extend_start
|
|
|
|
{% block cyborg_api_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|