kolla/docker/kuryr/Dockerfile.j2
Shaun Smekel c2f6cb1573 Customizations for Kuryr
This patchset contains customization of Dockerfile of the Kuryr
container.

Change-Id: I254befb427530949284f645c9d61c54331aba53a
Partially-implements: blueprint third-party-plugin-support
2016-08-12 08:04:22 +10:00

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 }}