From 589cff29aeda0b6af9dd743869444c2f445957e1 Mon Sep 17 00:00:00 2001 From: Kiran Kilingar Nadumane Date: Thu, 22 Feb 2024 13:13:43 -0800 Subject: [PATCH] install openssl (#136) --- Earthfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Earthfile b/Earthfile index d065177..c6075d2 100644 --- a/Earthfile +++ b/Earthfile @@ -338,6 +338,10 @@ base-image: RUN cp /sbin/apparmor_parser /usr/bin/apparmor_parser END + IF [ "$OS_DISTRIBUTION" = "rhel" ] + RUN yum install -y openssl + END + IF [ "$OS_DISTRIBUTION" = "sles" ] RUN cp /sbin/apparmor_parser /usr/bin/apparmor_parser END