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 b4d45f120..64731a1a9 100644 --- a/tripleo_ansible/roles/tripleo_container_image_build/templates/Containerfile.j2 +++ b/tripleo_ansible/roles/tripleo_container_image_build/templates/Containerfile.j2 @@ -13,10 +13,10 @@ # License for the specific language governing permissions and limitations # under the License. +FROM {{ tcib_from }} {% for key, value in tcib_args.items() %} ARG {{ key }}={{ value | to_json }} {% endfor %} -FROM {{ tcib_from }} {% for key, value in tcib_labels.items() %} LABEL {{ key }}={{ value | to_json }} {% endfor %}