From 054bb1750c6fee9996d696afe9c8b8f2725fd2e1 Mon Sep 17 00:00:00 2001 From: Elijah DeLee Date: Tue, 15 Apr 2025 15:57:55 -0400 Subject: [PATCH] Update Dockerfile to include ansible-runner where this is used in controller/AAP/awx we need ansible-runner for the health check. this brings more in line w/ downstream so we can test downstream AAP w/ upstream receptor image when y'all have new fixes you'd like to try out --- packaging/container/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/packaging/container/Dockerfile b/packaging/container/Dockerfile index 21ec3566b..87baf9a0c 100644 --- a/packaging/container/Dockerfile +++ b/packaging/container/Dockerfile @@ -26,6 +26,7 @@ RUN dnf -y update && \ dnf clean all && \ pip3.12 install --no-cache-dir wheel && \ pip3.12 install --no-cache-dir dumb-init && \ + pip3.12 install --no-cache-dir ansible-runner && \ pip3.12 install --no-cache-dir /tmp/*.whl && \ rm /tmp/*.whl