mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
29 lines
585 B
Docker
29 lines
585 B
Docker
# See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
# Layer to build Zeek.
|
|
FROM debian:bullseye-slim
|
|
|
|
# Configure system for build.
|
|
RUN apt-get -q update \
|
|
&& apt-get install -q -y --no-install-recommends \
|
|
bind9 \
|
|
bison \
|
|
ccache \
|
|
cmake \
|
|
flex \
|
|
g++ \
|
|
gcc \
|
|
libfl2 \
|
|
libfl-dev \
|
|
libmaxminddb-dev \
|
|
libpcap-dev \
|
|
libssl-dev \
|
|
libz-dev \
|
|
make \
|
|
python3-minimal \
|
|
python3.9-dev \
|
|
swig \
|
|
ninja-build \
|
|
python3-pip \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|