mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
24 lines
310 B
Docker
24 lines
310 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache \
|
|
cmake \
|
|
make \
|
|
g++ \
|
|
python3 \
|
|
python3-dev \
|
|
flex \
|
|
bison \
|
|
libpcap-dev \
|
|
openssl-dev \
|
|
zlib-dev \
|
|
swig \
|
|
bash \
|
|
bsd-compat-headers \
|
|
linux-headers \
|
|
fts-dev \
|
|
git \
|
|
curl \
|
|
openssh-client \
|
|
py3-pip
|
|
|
|
RUN pip3 install junit2html
|