mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
30 lines
553 B
Docker
30 lines
553 B
Docker
FROM centos:8
|
|
|
|
RUN dnf -y install epel-release dnf-plugins-core \
|
|
&& dnf clean all && rm -rf /var/cache/dnf
|
|
|
|
RUN dnf config-manager --set-enabled powertools
|
|
|
|
RUN dnf -y update && dnf -y install \
|
|
git \
|
|
cmake \
|
|
make \
|
|
gcc \
|
|
gcc-c++ \
|
|
flex \
|
|
bison \
|
|
swig \
|
|
openssl \
|
|
openssl-devel \
|
|
libpcap-devel \
|
|
python3 \
|
|
python3-devel \
|
|
python3-pip \
|
|
zlib-devel \
|
|
libsqlite3x-devel \
|
|
findutils \
|
|
diffutils \
|
|
which \
|
|
&& dnf clean all && rm -rf /var/cache/dnf
|
|
|
|
RUN pip3 install junit2html
|