mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08:20 +00:00

There's no official Docker image on the Docker Hub, it's on quay.io: https://quay.io/repository/centos/centos?tab=tags At the moment, "Stream" and "Stream 8" are synonymous.
23 lines
393 B
Docker
23 lines
393 B
Docker
FROM quay.io/centos/centos:stream8
|
|
|
|
RUN dnf config-manager --set-enabled powertools
|
|
|
|
RUN dnf -y install \
|
|
bison \
|
|
cmake \
|
|
diffutils \
|
|
flex \
|
|
git \
|
|
gcc \
|
|
gcc-c++ \
|
|
libpcap-devel \
|
|
make \
|
|
openssl-devel \
|
|
python3-devel \
|
|
python3-pip\
|
|
sqlite \
|
|
swig \
|
|
zlib-devel \
|
|
&& dnf clean all && rm -rf /var/cache/dnf
|
|
|
|
RUN pip3 install junit2html
|