kolla-ansible/docker_templates/haproxy/Dockerfile.j2
weiyu 08b31dcc25 Add Dockerfile template for haproxy
Change-Id: If269a483a1f2a9fd1258fdcb90b139d137037dfd
Partially-Implements: blueprint dockerfile-template
2015-08-13 10:36:07 +08:00

21 lines
498 B
Django/Jinja
Executable File

FROM {{ namespace }}/{{ base_distro }}-{{ install_type }}-base:{{ tag }}
MAINTAINER Kolla Project (https://launchpad.net/kolla)
{% if base_distro in ['fedora', 'centos', 'oraclelinux'] %}
RUN yum -y install \
haproxy \
&& yum clean all
{% elif base_distro in ['ubuntu', 'debian'] %}
RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
&& /bin/false
{% endif %}
COPY start.sh /
COPY config-external.sh ensure_latest_config.sh /opt/kolla/
CMD ["/start.sh"]