Skip to content

Commit 1f9b9d7

Browse files
authored
chore(deps): Update debian image usages to trixie (#23720)
Co-authored-by: Denise Ratasich <[email protected]>
1 parent adb51fb commit 1f9b9d7

File tree

8 files changed

+9
-8
lines changed

8 files changed

+9
-8
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,7 @@ jobs:
381381
- ubuntu:24.04
382382
- debian:11
383383
- debian:12
384+
- debian:13
384385
container:
385386
image: ${{ matrix.container }}
386387
steps:

distribution/docker/debian/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/debian:bookworm-slim AS builder
1+
FROM docker.io/debian:trixie-slim AS builder
22

33
WORKDIR /vector
44

@@ -7,7 +7,7 @@ RUN dpkg -i vector_*_"$(dpkg --print-architecture)".deb
77

88
RUN mkdir -p /var/lib/vector
99

10-
FROM docker.io/debian:bookworm-slim
10+
FROM docker.io/debian:trixie-slim
1111

1212
# https://github.com/opencontainers/image-spec/blob/main/annotations.md
1313
LABEL org.opencontainers.image.url="https://vector.dev"

distribution/docker/distroless-libc/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/debian:bookworm-slim AS builder
1+
FROM docker.io/debian:trixie-slim AS builder
22

33
WORKDIR /vector
44

regression/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
1414
#
1515
# TARGET
1616
#
17-
FROM docker.io/debian:bookworm-slim@sha256:01bd742e2c269abf94e2fefb47b08b5b61c9a880b993417d23a1d0bd9fa60dc4
17+
FROM docker.io/debian:trixie-slim@sha256:c85a2732e97694ea77237c61304b3bb410e0e961dd6ee945997a06c788c545bb
1818
RUN apt-get update && apt-get dist-upgrade -y && apt-get -y --no-install-recommends install zlib1g ca-certificates && rm -rf /var/lib/apt/lists/*
1919
COPY --from=builder /vector/vector /usr/bin/vector
2020
RUN mkdir --parents --mode=0777 /var/lib/vector

scripts/e2e/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG RUST_VERSION=1.85
22
ARG FEATURES
33

4-
FROM docker.io/rust:${RUST_VERSION}-slim-bookworm
4+
FROM docker.io/rust:${RUST_VERSION}-slim-trixie
55

66
RUN apt-get update && apt-get -y --no-install-recommends install \
77
build-essential \

scripts/integration/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG RUST_VERSION=1.85
2-
FROM docker.io/rust:${RUST_VERSION}-slim-bookworm
2+
FROM docker.io/rust:${RUST_VERSION}-slim-trixie
33

44
RUN apt-get update && apt-get install -y --no-install-recommends \
55
build-essential \

tests/data/dnstap/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker.io/library/debian:bookworm
1+
FROM docker.io/library/debian:trixie
22

33
ENV DEBIAN_FRONTEND=noninteractive
44

tilt/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG RUST_VERSION=1.85
2-
ARG DEBIAN_RELEASE=bookworm
2+
ARG DEBIAN_RELEASE=trixie
33
# Features required for both Agent and Aggregator Helm chart configurations
44
ARG FEATURES=api,api-client,sources-datadog_agent,sources-fluent,sources-host_metrics,sources-internal_metrics,sources-kubernetes_logs,sources-logstash,sources-splunk_hec,sources-statsd,sources-syslog,sources-vector,sinks-console,sinks-prometheus,sinks-vector
55

0 commit comments

Comments
 (0)