From 7e6ee4607f9ca344da741df829e3940c445f2ad4 Mon Sep 17 00:00:00 2001 From: Michael Insel Date: Tue, 26 Jan 2021 18:38:10 +0100 Subject: [PATCH] Add package libcap2-bin for POSIX 1003.1e capabilities Adds the libcap2-bin package which implements user-space interfaces to the POSIX 1003.1e capabilities avaiable in the Linux kernel. Some check plugins (e.g. check_icmp) are only usable as a non-root user when libcap2-bin package is installed. refs #47 --- deps.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps.Dockerfile b/deps.Dockerfile index c80318e..73734e4 100644 --- a/deps.Dockerfile +++ b/deps.Dockerfile @@ -59,7 +59,7 @@ RUN cd /check_postgres ;\ FROM debian:buster-slim -RUN ["/bin/bash", "-exo", "pipefail", "-c", "export DEBIAN_FRONTEND=noninteractive; apt-get update; apt-get install --no-install-{recommends,suggests} -y dumb-init libboost-{context,coroutine,date-time,filesystem,program-options,regex,system,thread}1.67 libedit2 libmariadb3 libmoosex-role-timer-perl libpq5 libssl1.1 mailutils monitoring-plugins openssh-client openssl postfix; apt-get clean; rm -vrf /var/lib/apt/lists/*"] +RUN ["/bin/bash", "-exo", "pipefail", "-c", "export DEBIAN_FRONTEND=noninteractive; apt-get update; apt-get install --no-install-{recommends,suggests} -y dumb-init libboost-{context,coroutine,date-time,filesystem,program-options,regex,system,thread}1.67 libedit2 libmariadb3 libmoosex-role-timer-perl libpq5 libssl1.1 mailutils monitoring-plugins openssh-client openssl postfix libcap2-bin; apt-get clean; rm -vrf /var/lib/apt/lists/*"] COPY --from=entrypoint /entrypoint/entrypoint /entrypoint