From 3eec9daae600ab6fdf51724f81e0970cf6445ebf Mon Sep 17 00:00:00 2001 From: Edoardo Mich <71270665+edoardomich@users.noreply.github.com> Date: Thu, 5 Jun 2025 11:47:15 +0200 Subject: [PATCH] docker: Add `net-tools` and `procps` dependencies Add `net-tools` and `procps` to the final.Dockerfile, to avoid warning in zeekctl commands like: "failed to find local IP addresses [...]" and the error in `zeekctl top` command caused respectively by missing `ifconfig` and `top` commands. --- docker/final.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/final.Dockerfile b/docker/final.Dockerfile index e8bc922988..8cfb7b1942 100644 --- a/docker/final.Dockerfile +++ b/docker/final.Dockerfile @@ -27,6 +27,8 @@ RUN apt-get -q update \ libuv1 \ libz1 \ libzmq5 \ + net-tools \ + procps \ python3-git \ python3-minimal \ python3-semantic-version \