mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
25 lines
692 B
Docker
25 lines
692 B
Docker
# See the file "COPYING" in the main distribution directory for copyright.
|
|
|
|
# Final layer containing all artifacts.
|
|
FROM debian:bullseye-slim
|
|
|
|
RUN apt-get -q update \
|
|
&& apt-get install -q -y --no-install-recommends \
|
|
ca-certificates \
|
|
git \
|
|
libmaxminddb0 \
|
|
libpython3.9 \
|
|
libpcap0.8 \
|
|
libssl1.1 \
|
|
libz1 \
|
|
python3-minimal \
|
|
python3-git \
|
|
python3-semantic-version \
|
|
python3-websocket \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy over Zeek installation from build
|
|
COPY --from=zeek-build /usr/local/zeek /usr/local/zeek
|
|
ENV PATH "/usr/local/zeek/bin:${PATH}"
|
|
ENV PYTHONPATH "/usr/local/zeek/lib/zeek/python:${PYTHONPATH}"
|