From 61092885685561dcdc17f0bec4a7c8e94a92dfd3 Mon Sep 17 00:00:00 2001 From: Seda Gundogdu Date: Mon, 5 Aug 2024 13:19:07 +0300 Subject: [PATCH] enable epel repository and installing pygpgme - updating repo metadata --- test-images/almalinux-9/Dockerfile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/test-images/almalinux-9/Dockerfile b/test-images/almalinux-9/Dockerfile index ca564315..97d07db0 100644 --- a/test-images/almalinux-9/Dockerfile +++ b/test-images/almalinux-9/Dockerfile @@ -15,10 +15,17 @@ ENV PG_MAJOR ${PG_MAJOR} RUN yum update -y +# Enable EPEL repository and install pygpgme +RUN yum install -y epel-release && \ + yum install -y pygpgme && \ + yum clean all + # TODO Parameterize Citus and postgres version RUN export CITUS_MAJOR_VER=${CITUS_MAJOR_VERSION//./} && \ curl https://raw.githubusercontent.com/citusdata/packaging/gh-pages/community/rpm.sh | bash && \ + yum clean all && \ + yum makecache && \ yum install -y citus${CITUS_MAJOR_VER}_${PG_MAJOR}-${CITUS_VERSION}.citus-${FANCY}.${PACKAGE_RELEASE_SUFFIX} \ hll_${PG_MAJOR}-${HLL_VERSION}.${PACKAGE_RELEASE_SUFFIX} \ topn_${PG_MAJOR}-${TOPN_VERSION}.${PACKAGE_RELEASE_SUFFIX}