diff options
author | Christian M. Adams <rooftopcellist@gmail.com> | 2020-12-07 17:08:00 +0100 |
---|---|---|
committer | Christian M. Adams <rooftopcellist@gmail.com> | 2020-12-07 17:08:00 +0100 |
commit | 8795d860d6d8508b8618969f35289607b041f010 (patch) | |
tree | 7991b59d2e70582858b4711beca2168a1285d3d4 /installer | |
parent | Merge pull request #8758 from hjkatz/patch-7 (diff) | |
download | awx-8795d860d6d8508b8618969f35289607b041f010.tar.xz awx-8795d860d6d8508b8618969f35289607b041f010.zip |
Fix image build - powertools repo ref changed
Diffstat (limited to 'installer')
-rw-r--r-- | installer/roles/image_build/templates/Dockerfile.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/installer/roles/image_build/templates/Dockerfile.j2 b/installer/roles/image_build/templates/Dockerfile.j2 index 2eadeff3a5..f29be8e8c3 100644 --- a/installer/roles/image_build/templates/Dockerfile.j2 +++ b/installer/roles/image_build/templates/Dockerfile.j2 @@ -26,7 +26,7 @@ USER root RUN dnf -y update && \ dnf -y install epel-release 'dnf-command(config-manager)' && \ dnf module -y enable 'postgresql:10' && \ - dnf config-manager --set-enabled PowerTools && \ + dnf config-manager --set-enabled powertools && \ dnf -y install ansible \ gcc \ gcc-c++ \ @@ -116,7 +116,7 @@ RUN dnf -y install \ RUN dnf -y update && \ dnf -y install epel-release 'dnf-command(config-manager)' && \ dnf module -y enable 'postgresql:10' && \ - dnf config-manager --set-enabled PowerTools && \ + dnf config-manager --set-enabled powertools && \ dnf -y install acl \ ansible \ bubblewrap \ |