From 87a8bfdafd91fd0ec203cb33642cf516d2798a00 Mon Sep 17 00:00:00 2001 From: Eric Stroczynski Date: Wed, 10 Feb 2021 19:32:52 -0800 Subject: [PATCH] images/ansible-operator/Dockerfile: pin cryptography python package to version that does not require the rust compiler to set up Signed-off-by: Eric Stroczynski --- images/ansible-operator/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/images/ansible-operator/Dockerfile b/images/ansible-operator/Dockerfile index 0b813e706f..0ae3e566ac 100644 --- a/images/ansible-operator/Dockerfile +++ b/images/ansible-operator/Dockerfile @@ -17,6 +17,7 @@ RUN yum clean all && rm -rf /var/cache/yum/* \ && yum -y update \ && yum install -y libffi-devel openssl-devel python36-devel gcc python3-pip python3-setuptools \ && pip3 install --no-cache-dir \ + cryptography==3.3.1 \ ansible-runner==1.3.4 \ ansible-runner-http==1.0.0 \ ipaddress==1.0.23 \