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 d90c0d3730
commit 356685d82d
3 changed files with 15 additions and 1 deletions

11
CHANGES
View file

@ -1,3 +1,14 @@
7.0.8-3 | 2025-07-14 14:11:30 -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.0.8-2 | 2025-07-14 14:09:51 -0700
* Update ZeekJS to v0.18.0 (Tim Wojtulewicz, Corelight)

View file

@ -1 +1 @@
7.0.8-2
7.0.8-3

View file

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