From ec07bab4bf42c4ae20fc43d34c164b08397fcfd3 Mon Sep 17 00:00:00 2001 From: phanikumar Date: Fri, 13 Sep 2024 13:35:05 +0530 Subject: [PATCH] Update Dockerfile-fips --- docker/ubi8/Dockerfile-fips | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/docker/ubi8/Dockerfile-fips b/docker/ubi8/Dockerfile-fips index 89408fa63..8a54cc781 100644 --- a/docker/ubi8/Dockerfile-fips +++ b/docker/ubi8/Dockerfile-fips @@ -57,10 +57,16 @@ RUN dnf install -y \ python3 \ && dnf clean all -RUN curl -O https://rpmfind.net/linux/centos/8/updates/x86_64/Packages/bison-3.0.4-7.el8.x86_64.rpm -RUN pwd -RUN ls -RUN rpm -i bison-3.0.4-7.el8.x86_64.rpm +RUN cd /usr/local/src \ + && wget https://ftp.gnu.org/gnu/bison/bison-3.7.4.tar.gz \ + && tar -xzf bison-3.7.4.tar.gz \ + && cd bison-3.7 \ + && ./configure \ + && make \ + && make install + +# Verify bison installation +RUN bison --version # Download and build glibc RUN cd /usr/local/src \