From cc5500282ad645722df71b03ae890703b75c80c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Jeanneret?= Date: Fri, 22 Jul 2022 14:27:32 +0200 Subject: [PATCH] Remove wrong equal sign According to the official doc[1], the syntax was wrong, leading to issues. It wasn't detected until now, because the option wasn't actually used. [1] https://docs.docker.com/engine/reference/builder/#arg Change-Id: Icdbc8d687e1a19ec4015c57acc05d35ddcfd2a77 (cherry picked from commit e9a1797366a97af171aa421180939e20bf018d4d) --- .../tripleo_container_image_build/templates/Containerfile.j2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tripleo_ansible/roles/tripleo_container_image_build/templates/Containerfile.j2 b/tripleo_ansible/roles/tripleo_container_image_build/templates/Containerfile.j2 index a2856164a..e44e15cd9 100644 --- a/tripleo_ansible/roles/tripleo_container_image_build/templates/Containerfile.j2 +++ b/tripleo_ansible/roles/tripleo_container_image_build/templates/Containerfile.j2 @@ -14,7 +14,7 @@ # under the License. {% for key, value in tcib_args.items() %} -ARG = {{ key }}={{ value | to_json }} +ARG {{ key }}={{ value | to_json }} {% endfor %} FROM {{ tcib_from }} {% for key, value in tcib_labels.items() %}