94162bd08f
This brings Kolla images inline with FHS and should make finding locations of things more consistent and reliable with the linux world at large. Change-Id: Iece5b4da4bace0fb8b1f41a65ab2c852ec73e6f8 Closes-Bug: #1485742
26 lines
747 B
Django/Jinja
26 lines
747 B
Django/Jinja
FROM {{ namespace }}/{{ image_prefix }}base:{{ tag }}
|
|
MAINTAINER Kolla Project (https://launchpad.net/kolla)
|
|
|
|
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
|
|
|
|
RUN yum -y install haproxy \
|
|
&& yum clean all
|
|
|
|
{% elif base_distro == 'ubuntu' %}
|
|
|
|
RUN apt-get install -y --no-install-recommends -t trusty-backports haproxy \
|
|
&& apt-get clean
|
|
|
|
{% elif base_distro == 'debian' %}
|
|
|
|
RUN apt-get install -y --no-install-recommends haproxy \
|
|
&& apt-get clean
|
|
|
|
{% endif %}
|
|
|
|
COPY ensure_latest_config.sh /usr/local/bin/kolla_ensure_haproxy_latest_config
|
|
COPY extend_start.sh /usr/local/bin/kolla_extend_start
|
|
RUN chmod 755 /usr/local/bin/kolla_extend_start /usr/local/bin/kolla_ensure_haproxy_latest_config
|
|
|
|
{{ include_footer }}
|