861f55fbfd
Change-Id: I9692dda817ef134d647247431565e1b58cf9da41
38 lines
1.1 KiB
Django/Jinja
38 lines
1.1 KiB
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}openstack-base:{{ tag }}
|
|
{% block labels %}
|
|
LABEL maintainer="{{ maintainer }}" name="{{ image_name }}" build-date="{{ build_date }}"
|
|
{% endblock %}
|
|
|
|
{% block kuryr_base_header %}{% endblock %}
|
|
|
|
{% import "macros.j2" as macros with context %}
|
|
|
|
{{ macros.configure_user(name='kuryr') }}
|
|
|
|
{% if install_type == 'binary' %}
|
|
|
|
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
|
|
&& /bin/false
|
|
|
|
{% elif install_type == 'source' %}
|
|
|
|
ADD kuryr-base-archive /kuryr-base-source
|
|
|
|
{% set kuryr_base_pip_packages = [
|
|
'/kuryr-base'
|
|
] %}
|
|
|
|
# NOTE(Jeffrey4l): remove kuryr-lib constraint in upper-constraints.txt file.
|
|
# Otherwise, it will be failed.
|
|
RUN ln -s kuryr-base-source/* kuryr-base \
|
|
&& sed -i 's|^kuryr-lib===.*$||g' requirements/upper-constraints.txt \
|
|
&& {{ macros.install_pip(kuryr_base_pip_packages | customizable("pip_packages")) }} \
|
|
&& mkdir -p /etc/kuryr \
|
|
&& chown -R kuryr: /etc/kuryr
|
|
{% endif %}
|
|
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start
|
|
|
|
{% block kuryr_base_footer %}{% endblock %}
|