From 5a6deb41882e744f4b5142556c0f709e8138e089 Mon Sep 17 00:00:00 2001 From: Omair Majid Date: Thu, 6 Jan 2022 17:08:14 -0500 Subject: [PATCH] Add pkill and friends to CentOS Stream 9 It was included in the default CentOS 8 container images and .NET builds make use of it, so make sure it's included in CentOS Stream 9 too. There are many other binaries/packages present in CentOS 8 that are missing in CentOS Stream 9 too, but blindly adding all of them (including systemd and dbus) will bloat the image for no reason. So let's just add this one and see if others are needed too. --- src/centos/stream9/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/src/centos/stream9/Dockerfile b/src/centos/stream9/Dockerfile index 740625e14..b655ad2b9 100644 --- a/src/centos/stream9/Dockerfile +++ b/src/centos/stream9/Dockerfile @@ -39,6 +39,7 @@ RUN dnf install --setopt tsflags=nodocs --refresh -y \ ncurses-devel \ numactl-devel \ openssl-devel \ + procps-ng \ python3 \ python3-devel \ readline-devel \