Skip to content

Commit 5158178

Browse files
authored
Merge pull request #9 from ruby-no-kai/trixie
trixie
2 parents be372f5 + 59b03c2 commit 5158178

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

dnscollector/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/docker/library/golang:1.22-bookworm AS build
1+
FROM public.ecr.aws/docker/library/golang:1.25-trixie AS build
22

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

dnsdist/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ RUN echo "${QUICHE_SHA256SUM} quiche.tar.gz" | sha256sum -c
3636

3737
###
3838

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

4141
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
4242
cmake clang

kea/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ ARG BASE=public.ecr.aws/ubuntu/ubuntu:24.04
44

55
###
66

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

99
WORKDIR /build/healthz
1010
COPY healthz/ ./

kea/kea-ctrl-agent.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
dhcp4: {
77
comment: 'main server',
88
'socket-type': 'unix',
9-
'socket-name': '/run/kea/dhcp4.sock',
9+
'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
1010
},
1111
// dhcp6: {
1212
// 'socket-type': 'unix',

s3tftpd-healthz/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/docker/library/rust:1.85-slim-bookworm as build
1+
FROM public.ecr.aws/docker/library/rust:1.89-slim-trixie as build
22

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

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

1212
COPY --from=build /app /app
1313
CMD ["/app/bin/s3tftpd-healthz"]

slack-thread-expander/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM public.ecr.aws/docker/library/rust:1.85-bookworm as builder
1+
FROM public.ecr.aws/docker/library/rust:1.89-trixie as builder
22
RUN cargo install --git https://github.com/eagletmt/slack-thread-expander --rev cd091d547ac6e6cc478855af887575355018f241
33

4-
FROM public.ecr.aws/docker/library/debian:bookworm-slim
4+
FROM public.ecr.aws/docker/library/debian:trixie-slim
55
RUN apt-get update && apt-get install -y ca-certificates && apt-get clean && rm -rf /var/lib/apt/lists/*
66
COPY --from=builder /usr/local/cargo/bin/slack-thread-expander /usr/local/bin/slack-thread-expander
77
CMD ["slack-thread-expander"]

unbound/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM public.ecr.aws/docker/library/golang:1.22-bookworm as build-exporter
1+
FROM public.ecr.aws/docker/library/golang:1.25-trixie as build-exporter
22

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

0 commit comments

Comments
 (0)