Merge branch 'topic/ado/final-docker' of https://github.com/edoardomich/zeek

* 'topic/ado/final-docker' of https://github.com/edoardomich/zeek:
  docker: Add `net-tools` and `procps` dependencies

(cherry picked from commit 8189716adc)
This commit is contained in:
Arne Welzel 2025-06-06 10:26:17 +02:00 committed by Tim Wojtulewicz
parent 82a13fc416
commit 7abf74e2d3
3 changed files with 14 additions and 1 deletions

11
CHANGES
View file

@ -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)

View file

@ -1 +1 @@
7.2.1-3
7.2.1-4

View file

@ -27,6 +27,8 @@ RUN apt-get -q update \
libuv1 \
libz1 \
libzmq5 \
net-tools \
procps \
python3-git \
python3-minimal \
python3-semantic-version \