435b21b90d
Change-Id: If4be00b937e14ec93443dcb7249cf17099d57cbe Closes-Bug: #1569417
22 lines
528 B
Django/Jinja
22 lines
528 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER {{ maintainer }}
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install \
|
|
haproxy \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro in ['debian', 'ubuntu'] %}
|
|
|
|
RUN apt-get -y install --no-install-recommends \
|
|
haproxy \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
COPY ensure_latest_config.sh /usr/local/bin/kolla_ensure_haproxy_latest_config
|
|
RUN chmod 755 /usr/local/bin/kolla_ensure_haproxy_latest_config
|
|
|
|
{{ include_footer }}
|