diff --git a/CHANGES b/CHANGES index 2a9f0593f6..d315005341 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,12 @@ +8.0.0-dev.380 | 2025-06-06 10:26:17 +0200 + + * docker: Add `net-tools` and `procps` dependencies (Edoardo Mich) + + 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. + 8.0.0-dev.378 | 2025-06-05 20:31:00 -0700 * Follow-ups to configure output reformatting (Tim Wojtulewicz, Corelight) diff --git a/VERSION b/VERSION index a45f8d6b3b..4c23709aab 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -8.0.0-dev.378 +8.0.0-dev.380 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 \