From fb64f6f4b705b65ba88afbb8bebab61daf222b91 Mon Sep 17 00:00:00 2001 From: David Butenhof Date: Fri, 16 Jun 2023 15:42:45 -0400 Subject: [PATCH] Add OpenSSL to container build (#3467) PBENCH-1188 Running now on an up-to-date Fedora 38 laptop, I'm finally able to use `jenkins/runlocal` without overriding the `BASE_IMAGE`... except that I had to manually install the `openssl` package on my laptop, and it apparently also needs to be manually installed inside the container base image. --- server/pbenchinacan/container-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/pbenchinacan/container-build.sh b/server/pbenchinacan/container-build.sh index 86110aa9f4..2a6aa8d45a 100755 --- a/server/pbenchinacan/container-build.sh +++ b/server/pbenchinacan/container-build.sh @@ -55,7 +55,7 @@ if [[ "${BASE_IMAGE}" == *"ubi9:latest" || "${BASE_IMAGE}" == *"centos:stream9" https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm fi buildah run $container dnf install -y --nodocs \ - /tmp/pbench-server.rpm nginx less rsyslog rsyslog-mmjsonparse + /tmp/pbench-server.rpm less nginx openssl rsyslog rsyslog-mmjsonparse buildah run $container dnf clean all buildah run $container rm -f /tmp/pbench-server.rpm