mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

This exposes Broker's new WebSocket support in Zeek. To enable it, call `Broker::listen_websocket()`. Zeek will then start listening on port 9997 for incoming WebSocket connections. See the Broker documentation for a description of the message format expected over these WebSocket connections.
28 lines
570 B
Docker
28 lines
570 B
Docker
FROM fedora:35
|
|
|
|
# A version field to invalide Cirrus's build cache when needed, as suggested in
|
|
# https://github.com/cirruslabs/cirrus-ci-docs/issues/544#issuecomment-566066822
|
|
ENV DOCKERFILE_VERSION 20220519
|
|
|
|
RUN dnf -y install \
|
|
ccache \
|
|
bison \
|
|
cmake \
|
|
diffutils \
|
|
findutils \
|
|
flex \
|
|
git \
|
|
gcc \
|
|
gcc-c++ \
|
|
libpcap-devel \
|
|
make \
|
|
openssl-devel \
|
|
python3-devel \
|
|
python3-pip\
|
|
sqlite \
|
|
swig \
|
|
which \
|
|
zlib-devel \
|
|
&& dnf clean all && rm -rf /var/cache/dnf
|
|
|
|
RUN pip3 install websockets junit2html
|