Skip to content

trixie #9

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Aug 14, 2025
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
2 changes: 1 addition & 1 deletion dnscollector/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/golang:1.22-bookworm AS build
FROM public.ecr.aws/docker/library/golang:1.25-trixie AS build

RUN go install github.com/dmachard/go-dnscollector@25b9b58c2f508719d6b9f7d5f58f753028fcc1f2

Expand Down
2 changes: 1 addition & 1 deletion dnsdist/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN echo "${QUICHE_SHA256SUM} quiche.tar.gz" | sha256sum -c

###

FROM public.ecr.aws/docker/library/rust:1.85.0-bookworm AS build-quiche
FROM public.ecr.aws/docker/library/rust:1.89.0-trixie AS build-quiche

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
cmake clang
Expand Down
2 changes: 1 addition & 1 deletion kea/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ARG BASE=public.ecr.aws/ubuntu/ubuntu:24.04

###

FROM public.ecr.aws/docker/library/rust:1.85-slim-bookworm as build-healthz
FROM public.ecr.aws/docker/library/rust:1.89-slim-trixie as build-healthz

WORKDIR /build/healthz
COPY healthz/ ./
Expand Down
2 changes: 1 addition & 1 deletion kea/kea-ctrl-agent.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
dhcp4: {
comment: 'main server',
'socket-type': 'unix',
'socket-name': '/run/kea/dhcp4.sock',
'socket-name': '/var/run/kea/dhcp4.sock', // /run/kea/dhcp4.sock via symlink on /var/run; https://gitlab.isc.org/isc-projects/kea/-/issues/3831
},
// dhcp6: {
// 'socket-type': 'unix',
Expand Down
4 changes: 2 additions & 2 deletions s3tftpd-healthz/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/rust:1.85-slim-bookworm as build
FROM public.ecr.aws/docker/library/rust:1.89-slim-trixie as build

COPY . /build/s3tftpd-healthz
WORKDIR /build/s3tftpd-healthz
Expand All @@ -7,7 +7,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/build/s3tftpd-healthz/target \
cargo install --path . --root /app --locked

FROM public.ecr.aws/docker/library/debian:bookworm-slim
FROM public.ecr.aws/docker/library/debian:trixie-slim

COPY --from=build /app /app
CMD ["/app/bin/s3tftpd-healthz"]
4 changes: 2 additions & 2 deletions slack-thread-expander/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM public.ecr.aws/docker/library/rust:1.85-bookworm as builder
FROM public.ecr.aws/docker/library/rust:1.89-trixie as builder
RUN cargo install --git https://github.com/eagletmt/slack-thread-expander --rev cd091d547ac6e6cc478855af887575355018f241

FROM public.ecr.aws/docker/library/debian:bookworm-slim
FROM public.ecr.aws/docker/library/debian:trixie-slim
RUN apt-get update && apt-get install -y ca-certificates && apt-get clean && rm -rf /var/lib/apt/lists/*
COPY --from=builder /usr/local/cargo/bin/slack-thread-expander /usr/local/bin/slack-thread-expander
CMD ["slack-thread-expander"]
2 changes: 1 addition & 1 deletion unbound/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM public.ecr.aws/docker/library/golang:1.22-bookworm as build-exporter
FROM public.ecr.aws/docker/library/golang:1.25-trixie as build-exporter

RUN go install github.com/hanazuki/unbound_exporter@8ff4abc0f6e4b05e3bb4073dda1227cdaffdefcc

Expand Down