Update haproxy dockerfile for formatting

Change-Id: I49231ddf2d8e6136e8a627cdf5674301018f984a
Partial-Bug:#1569417
This commit is contained in:
Swapnil Kulkarni (coolsvap) 2016-04-13 15:14:46 +05:30
parent 3a35abe4a1
commit 6b6c9840dc
1 changed files with 4 additions and 2 deletions

View File

@ -3,12 +3,14 @@ MAINTAINER {{ maintainer }}
{% if base_distro in ['centos', 'fedora', 'oraclelinux', 'rhel'] %}
RUN yum -y install haproxy \
RUN yum -y install \
haproxy \
&& yum clean all
{% elif base_distro in ['debian', 'ubuntu'] %}
RUN apt-get install -y --no-install-recommends haproxy \
RUN apt-get install -y --no-install-recommends \
haproxy \
&& apt-get clean
{% endif %}