From 8ea11128a439effdcb6e737fa8ce597f568287b6 Mon Sep 17 00:00:00 2001 From: Yonas Habteab Date: Wed, 10 Sep 2025 15:12:08 +0200 Subject: [PATCH] don't install boost dev in the final image --- Containerfile | 20 +++++++++----------- 1 file changed, 9 insertions(+), 11 deletions(-) diff --git a/Containerfile b/Containerfile index 7e149d694..1e62559a7 100644 --- a/Containerfile +++ b/Containerfile @@ -149,17 +149,15 @@ RUN apt-get update && \ curl \ dumb-init \ file \ - libboost1.83-dev \ - libboost-context1.83-dev \ - libboost-coroutine1.83-dev \ - libboost-date-time1.83-dev \ - libboost-filesystem1.83-dev \ - libboost-iostreams1.83-dev \ - libboost-program-options1.83-dev \ - libboost-regex1.83-dev \ - libboost-system1.83-dev \ - libboost-thread1.83-dev \ - libboost-test1.83-dev \ + libboost-context1.83.0 \ + libboost-coroutine1.83.0 \ + libboost-date-time1.83.0 \ + libboost-filesystem1.83.0 \ + libboost-iostreams1.83.0 \ + libboost-program-options1.83.0 \ + libboost-regex1.83.0 \ + libboost-system1.83.0 \ + libboost-thread1.83.0 \ libcap2-bin \ libedit2 \ libldap-common \