From 71c729a288b26251050731f130d9fee348dc7d30 Mon Sep 17 00:00:00 2001 From: Matt Wozniski Date: Wed, 29 May 2024 21:31:18 -0400 Subject: [PATCH] Install libdebuginfod-dev in our Dockerfile Now that we link directly to libdebuginfod.so, we need that library to be available whenever we're built from source. Signed-off-by: Matt Wozniski --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 929eef57c4..956c63f091 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,7 @@ ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update \ && apt-get install -y --force-yes --no-install-recommends \ build-essential \ + libdebuginfod-dev \ libunwind-dev \ liblz4-dev \ pkg-config \