From 642e6f792cad6365506d2ae1f48f2a828b290fb8 Mon Sep 17 00:00:00 2001 From: Shane McDonald Date: Tue, 29 Dec 2020 19:14:16 -0500 Subject: [PATCH] Remove unnecessary conditional from image build task --- installer/roles/image_build/tasks/main.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/installer/roles/image_build/tasks/main.yml b/installer/roles/image_build/tasks/main.yml index e2c73719b4..463e12ec73 100644 --- a/installer/roles/image_build/tasks/main.yml +++ b/installer/roles/image_build/tasks/main.yml @@ -29,7 +29,6 @@ # Calling Docker directly because docker-py doesnt support BuildKit - name: Build AWX image command: docker build -t {{ awx_image }}:{{ awx_version }} .. - when: use_container_for_build|default(true)|bool - name: Tag awx images as latest command: "docker tag {{ item }}:{{ awx_version }} {{ item }}:latest"