From be06b6ca8439f026b399bdb29a899cfb92140e4e Mon Sep 17 00:00:00 2001 From: Kenneth Hoste Date: Sun, 7 Dec 2025 16:10:41 +0100 Subject: [PATCH] add glibc-gconv-extra to Rocky Linux 9 + 10 containers --- rockylinux-10.1/Dockerfile | 3 ++- rockylinux-9.5/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/rockylinux-10.1/Dockerfile b/rockylinux-10.1/Dockerfile index 02dc9aa..a0968c2 100644 --- a/rockylinux-10.1/Dockerfile +++ b/rockylinux-10.1/Dockerfile @@ -6,7 +6,8 @@ RUN dnf -y update \ && dnf -y install epel-release && dnf -y install python3 python3-pip Lmod # --allowerasing is required to allow to install curl and remove conflicting curl-minimal which is part of the base image # glibc-langpack-en provides locale stuff (for en_US.UTF-8) -RUN dnf -y --allowerasing install bzip2 curl diffutils file findutils gcc-c++ git glibc-langpack-en gzip make openssl openssl-devel rdma-core-devel patch sudo tar unzip which xz +# glibc-gconv-extra provides support for ISO-8859-5 encoding (required by libxml2 tests) +RUN dnf -y --allowerasing install bzip2 curl diffutils file findutils gcc-c++ git glibc-gconv-extra glibc-langpack-en gzip make openssl openssl-devel rdma-core-devel patch sudo tar unzip which xz # install requirements to build OpenSSL 1.1 and 3.0 from source RUN dnf -y install perl-FindBin perl-File-Compare perl-File-Copy perl-IPC-Cmd perl-Pod-Html RUN python3 -m pip install archspec diff --git a/rockylinux-9.5/Dockerfile b/rockylinux-9.5/Dockerfile index a168051..3f8757e 100644 --- a/rockylinux-9.5/Dockerfile +++ b/rockylinux-9.5/Dockerfile @@ -6,7 +6,8 @@ RUN dnf -y update \ && dnf -y install epel-release && dnf -y install python3 python3-pip Lmod # --allowerasing is required to allow to install curl and remove conflicting curl-minimal which is part of the base image # glibc-langpack-en provides locale stuff (for en_US.UTF-8) -RUN dnf -y --allowerasing install bzip2 curl diffutils file findutils gcc-c++ git glibc-langpack-en gzip make openssl openssl-devel rdma-core-devel patch sudo tar unzip which xz +# glibc-gconv-extra provides support for ISO-8859-5 encoding (required by libxml2 tests) +RUN dnf -y --allowerasing install bzip2 curl diffutils file findutils gcc-c++ git glibc-gconv-extra glibc-langpack-en gzip make openssl openssl-devel rdma-core-devel patch sudo tar unzip which xz # install requirements to build OpenSSL 1.1 and 3.0 from source RUN dnf -y install perl-FindBin perl-File-Compare perl-File-Copy perl-IPC-Cmd perl-Pod-Html RUN python3 -m pip install archspec