docker: Bump to debian:trixie-slim

This commit is contained in:
Arne Welzel 2025-08-13 14:56:26 +02:00
parent 75ba63eb3f
commit 91afdd03b8
2 changed files with 7 additions and 5 deletions

View file

@ -1,7 +1,7 @@
# See the file "COPYING" in the main distribution directory for copyright.
# Layer to build Zeek.
FROM debian:bookworm-slim
FROM debian:13-slim
# Make the shell split commands in the log so we can determine reasons for
# failures more easily.
@ -16,6 +16,7 @@ RUN echo 'Acquire::https::timeout "180";' >> /etc/apt/apt.conf.d/99-timeouts
# Configure system for build.
RUN apt-get -q update \
&& apt-get upgrade -q -y \
&& apt-get install -q -y --no-install-recommends \
bind9 \
bison \
@ -36,7 +37,7 @@ RUN apt-get -q update \
libz-dev \
make \
python3-minimal \
python3.11-dev \
python3-dev \
swig \
ninja-build \
python3-pip \

View file

@ -1,7 +1,7 @@
# See the file "COPYING" in the main distribution directory for copyright.
# Final layer containing all artifacts.
FROM debian:bookworm-slim
FROM debian:13-slim
# Make the shell split commands in the log so we can determine reasons for
# failures more easily.
@ -15,14 +15,15 @@ RUN echo 'Acquire::http::timeout "180";' > /etc/apt/apt.conf.d/99-timeouts
RUN echo 'Acquire::https::timeout "180";' >> /etc/apt/apt.conf.d/99-timeouts
RUN apt-get -q update \
&& apt-get upgrade -q -y \
&& apt-get install -q -y --no-install-recommends \
ca-certificates \
git \
jq \
libmaxminddb0 \
libnode108 \
libnode115 \
libpcap0.8 \
libpython3.11 \
libpython3.13 \
libssl3 \
libuv1 \
libz1 \