diff --git a/CHANGES b/CHANGES index 46b282700d..3e8bc92798 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,14 @@ +7.2.1-4 | 2025-07-14 14:26:57 -0700 + + * 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. + + (cherry picked from commit 8189716adcd16e017c4ea7bcd2358f89bd6cbcc5) + 7.2.1-3 | 2025-07-14 14:25:26 -0700 * GH-4522: smtp: Fix last_reply column in smtp.log for BDAT LAST (Arne Welzel, Corelight) diff --git a/VERSION b/VERSION index e49a081663..82dd69f47b 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.2.1-3 +7.2.1-4 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 \