Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ jobs:
- ubuntu:24.04
- debian:11
- debian:12
- debian:13
container:
image: ${{ matrix.container }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions distribution/docker/debian/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/debian:bookworm-slim AS builder
FROM docker.io/debian:trixie-slim AS builder

WORKDIR /vector

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

RUN mkdir -p /var/lib/vector

FROM docker.io/debian:bookworm-slim
FROM docker.io/debian:trixie-slim

# https://github.com/opencontainers/image-spec/blob/main/annotations.md
LABEL org.opencontainers.image.url="https://vector.dev"
Expand Down
2 changes: 1 addition & 1 deletion distribution/docker/distroless-libc/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/debian:bookworm-slim AS builder
FROM docker.io/debian:trixie-slim AS builder

WORKDIR /vector

Expand Down
2 changes: 1 addition & 1 deletion regression/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
#
# TARGET
#
FROM docker.io/debian:bookworm-slim@sha256:01bd742e2c269abf94e2fefb47b08b5b61c9a880b993417d23a1d0bd9fa60dc4
FROM docker.io/debian:trixie-slim@sha256:c85a2732e97694ea77237c61304b3bb410e0e961dd6ee945997a06c788c545bb
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/*
COPY --from=builder /vector/vector /usr/bin/vector
RUN mkdir --parents --mode=0777 /var/lib/vector
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG RUST_VERSION=1.85
ARG FEATURES

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

RUN apt-get update && apt-get -y --no-install-recommends install \
build-essential \
Expand Down
2 changes: 1 addition & 1 deletion scripts/integration/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG RUST_VERSION=1.85
FROM docker.io/rust:${RUST_VERSION}-slim-bookworm
FROM docker.io/rust:${RUST_VERSION}-slim-trixie

RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
Expand Down
2 changes: 1 addition & 1 deletion tests/data/dnstap/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/library/debian:bookworm
FROM docker.io/library/debian:trixie

ENV DEBIAN_FRONTEND=noninteractive

Expand Down
2 changes: 1 addition & 1 deletion tilt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG RUST_VERSION=1.85
ARG DEBIAN_RELEASE=bookworm
ARG DEBIAN_RELEASE=trixie
# Features required for both Agent and Aggregator Helm chart configurations
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

Expand Down
Loading