From c3453b3f18fadeb3e56987437358843bf9526843 Mon Sep 17 00:00:00 2001 From: Alistair Burrowes Date: Thu, 28 Jul 2022 19:37:11 +1000 Subject: [PATCH] Install libnuma always It was a bit unclear if this is always required, but seems it is good to install it to be safe as there are edge cases where it is needed. Also this was installed in all the slim images and it should be consistent. --- 8.10/buster/Dockerfile | 1 + 9.2/buster/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/8.10/buster/Dockerfile b/8.10/buster/Dockerfile index d1373db..9cef480 100644 --- a/8.10/buster/Dockerfile +++ b/8.10/buster/Dockerfile @@ -5,6 +5,7 @@ ENV LANG C.UTF-8 # additional haskell specific deps RUN apt-get update && \ apt-get install -y --no-install-recommends \ + libnuma-dev \ libtinfo-dev && \ rm -rf /var/lib/apt/lists/* diff --git a/9.2/buster/Dockerfile b/9.2/buster/Dockerfile index 2ec8d9b..c86df84 100644 --- a/9.2/buster/Dockerfile +++ b/9.2/buster/Dockerfile @@ -5,6 +5,7 @@ ENV LANG C.UTF-8 # additional haskell specific deps RUN apt-get update && \ apt-get install -y --no-install-recommends \ + libnuma-dev \ libtinfo-dev && \ rm -rf /var/lib/apt/lists/*