From 6ff5a3ffd5fa472e722a8efedc94728f54fc4493 Mon Sep 17 00:00:00 2001 From: Keenan Brock Date: Fri, 22 Nov 2024 16:35:15 -0500 Subject: [PATCH] Move paramiko into Dockerfile. Before ====== Installs python paramiko package via rpm Also installs paramiko python pip package. After ===== Ensure paramiko is available in the environment that builds the virtual env. virtual env building process will detect the package is available and and not try and install the paramiko pip package. So we end up with only 1 paramiko package installed. This will ensure we do not install the paramiko python pip package into the venv. History ======= This issue was introduced in - https://github.com/ManageIQ/manageiq-rpm_build/pull/509 - 35401105fb1c8535 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 5e9e7d1..309726e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -57,6 +57,7 @@ RUN ARCH=$(uname -m) && \ python3-pip \ python3-virtualenv \ rpm-build && \ + python3-paramiko && \ dnf -y update libarchive && \ dnf clean all && \ rm -rf /var/cache/dnf