From 9cbceda259e930273a70ea533027f545faaf4207 Mon Sep 17 00:00:00 2001 From: liyingjun Date: Tue, 26 Jul 2016 16:06:41 +0800 Subject: [PATCH] Fixes Dockerfile for neutron-lbaas-agent Remove the extra '\' after RUN command for ubuntu, otherwise the later COPY will not run correctly for ubuntu image. Change-Id: Ie7de201711c6e684f58665027888c34f4c245487 Closes-bug: #1605453 --- docker/neutron/neutron-lbaas-agent/Dockerfile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/neutron/neutron-lbaas-agent/Dockerfile.j2 b/docker/neutron/neutron-lbaas-agent/Dockerfile.j2 index 9919c000b1..9c6d5cce67 100644 --- a/docker/neutron/neutron-lbaas-agent/Dockerfile.j2 +++ b/docker/neutron/neutron-lbaas-agent/Dockerfile.j2 @@ -28,7 +28,7 @@ RUN apt-get -y install --no-install-recommends \ neutron-lbaas-common \ neutron-lbaasv2-agent \ python-neutron-lbaas \ - && apt-get clean \ + && apt-get clean {% endif %}