c2f6cb1573
This patchset contains customization of Dockerfile of the Kuryr container. Change-Id: I254befb427530949284f645c9d61c54331aba53a Partially-implements: blueprint third-party-plugin-support
22 lines
597 B
Django/Jinja
22 lines
597 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD kuryr-archive /kuryr-source
|
|
RUN ln -s kuryr-source/* kuryr \
|
|
&& /var/lib/kolla/venv/bin/pip --no-cache-dir install --upgrade -c requirements/upper-constraints.txt /kuryr
|
|
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
|
|
{% block kuryr_footer %}{% endblock %}
|
|
{% block footer %}{% endblock %}
|
|
{{ include_footer }}
|