From 6b6c9840dc2a7052258ee4b92838eb154f88f232 Mon Sep 17 00:00:00 2001 From: "Swapnil Kulkarni (coolsvap)" Date: Wed, 13 Apr 2016 15:14:46 +0530 Subject: [PATCH] Update haproxy dockerfile for formatting Change-Id: I49231ddf2d8e6136e8a627cdf5674301018f984a Partial-Bug:#1569417 --- docker/haproxy/Dockerfile.j2 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/haproxy/Dockerfile.j2 b/docker/haproxy/Dockerfile.j2 index 38f5dc5c14..d219696293 100644 --- a/docker/haproxy/Dockerfile.j2 +++ b/docker/haproxy/Dockerfile.j2 @@ -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 %}