From 4b7c8c3d5af6dcaf1dcf2faaba5af03b7d2f4b66 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 31 Jan 2024 20:34:21 -0600 Subject: [PATCH] container: Install openssl-devel in build stage The OpenID Connect integration introduced a dependency on the system OpenSSL library. As such, the OpenSSL development package needs ot be available when building the application. --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index 451a0d0..9b01204 100644 --- a/Containerfile +++ b/Containerfile @@ -6,6 +6,7 @@ RUN --mount=type=cache,target=/var/cache \ cargo \ libvirt-devel \ rust \ + openssl-devel \ && : COPY . /build