diff --git a/docker_templates/haproxy/Dockerfile.j2 b/docker_templates/haproxy/Dockerfile.j2
index ba6c76b21000cc3390be05443fde7f120cd5bad1..1a40d5d932a042e7c452e651914490ca97942dbb 100755
--- a/docker_templates/haproxy/Dockerfile.j2
+++ b/docker_templates/haproxy/Dockerfile.j2
@@ -7,10 +7,15 @@ RUN yum -y install \
         haproxy \
     && yum clean all
 
-{% elif base_distro in ['ubuntu', 'debian'] %}
+{% elif base_distro == 'ubuntu' %}
 
-RUN echo '{{ install_type }} not yet available for {{ base_distro }}' \
-    && /bin/false
+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 %}