From 94a56e4ec1e9900b696a34494ebcde7a0d17f73f Mon Sep 17 00:00:00 2001 From: Riccardo Pittau Date: Mon, 17 Aug 2020 12:32:25 +0200 Subject: [PATCH] Fix arch for python3-bcrypt The python3-bcrypt library is going to be installed inside the ipa-ramdisk based on its architecture. --- Dockerfile.ocp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ocp b/Dockerfile.ocp index 7cf93c87..9947b7ca 100644 --- a/Dockerfile.ocp +++ b/Dockerfile.ocp @@ -13,7 +13,7 @@ RUN dnf upgrade -y && \ && \ dnf download --destdir /tmp/packages \ openstack-ironic-python-agent \ - python3-bcrypt \ + python3-bcrypt.$(uname -m) \ python3-ironic-lib \ python3-ironic-python-agent \ rhosp-director-images-ipa-$(uname -m) \