From e45fe8f3d5304b522f7aa328e54a0ce7511c3401 Mon Sep 17 00:00:00 2001 From: denis <23164223+unleftie@users.noreply.github.com> Date: Sun, 26 Feb 2023 12:30:43 +0000 Subject: [PATCH] add iproute package this package is required to use the command "ip a". Also ansible uses this packege to get "ansible_default_ipv4" variable, see https://stackoverflow.com/questions/41469740/ansible-default-ipv4-address-undefined-in-docker-ubuntu --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index aef7dc3..c151554 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,7 @@ RUN yum -y install rpm dnf-plugins-core \ python3 \ python3-pip \ python3-pyyaml \ + iproute \ && yum clean all # Upgrade pip to latest version.