mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Switch published container image to debian:bullseye-slim
This commit is contained in:
parent
d6c80f6d2c
commit
2db1ebb2a2
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
||||||
# See the file "COPYING" in the main distribution directory for copyright.
|
# See the file "COPYING" in the main distribution directory for copyright.
|
||||||
|
|
||||||
# Layer to build Zeek.
|
# Layer to build Zeek.
|
||||||
FROM debian:buster-slim AS build_zeek
|
FROM debian:bullseye-slim AS build
|
||||||
|
|
||||||
# Configure system for build.
|
# Configure system for build.
|
||||||
RUN apt-get -q update \
|
RUN apt-get -q update \
|
||||||
|
@ -38,7 +38,7 @@ RUN ./configure \
|
||||||
&& ninja -C build install
|
&& ninja -C build install
|
||||||
|
|
||||||
# Final layer containing all artifacts.
|
# Final layer containing all artifacts.
|
||||||
FROM debian:buster-slim AS final
|
FROM debian:bullseye-slim AS final
|
||||||
|
|
||||||
RUN apt-get -q update \
|
RUN apt-get -q update \
|
||||||
&& apt-get install -q -y --no-install-recommends \
|
&& apt-get install -q -y --no-install-recommends \
|
||||||
|
@ -56,5 +56,5 @@ RUN apt-get -q update \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
# Copy over Zeek installation.
|
# Copy over Zeek installation.
|
||||||
COPY --from=build_zeek /usr/local/zeek /usr/local/zeek
|
COPY --from=build /usr/local/zeek /usr/local/zeek
|
||||||
ENV PATH "/usr/local/zeek/bin:${PATH}"
|
ENV PATH "/usr/local/zeek/bin:${PATH}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue