Skip to content

Commit f484b03

Browse files
committed
chore: update Dockerfile and debian.yaml to use Debian Trixie version
1 parent 122caca commit f484b03

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

dockerfiles/agent-discovery/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
22

3-
# We start from the Debian 'bookworm' image dated 2023-11-20.
4-
FROM debian:bookworm-20250908-slim as prepare-stage
3+
# We start from the Debian 'trixie' image.
4+
FROM debian:trixie-20250610-slim as prepare-stage
55

66
# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
77
COPY *sh /usr/local/bin/

dockerfiles/sidekick/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.
22

3-
# We start from the Debian 'bookworm' image dated 2023-11-20.
4-
FROM debian:bookworm-20250929 as prepare-stage
3+
# We start from the Debian 'trixie' image.
4+
FROM debian:trixie-20250610 as prepare-stage
55

66
# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
77
COPY *sh /usr/local/bin/

updatecli/updatecli.d/debian.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@ scms:
1313
branch: "{{ .github.branch }}"
1414

1515
sources:
16-
bookwormLatestVersion:
16+
trixieLatestVersion:
1717
kind: dockerimage
18-
name: "Get the latest Debian Bookworm Linux version"
18+
name: "Get the latest Debian Trixie Linux version"
1919
spec:
2020
image: "debian"
21-
tagfilter: "bookworm-*"
21+
tagfilter: "trixie-*"
2222
versionfilter:
2323
kind: regex
2424
pattern: >-
25-
bookworm-\d+$
25+
trixie-\d+$
2626
2727
targets:
2828
debian:
@@ -34,14 +34,14 @@ targets:
3434
instruction:
3535
keyword: FROM
3636
matcher: debian
37-
sourceid: bookwormLatestVersion
37+
sourceid: trixieLatestVersion
3838

3939
actions:
4040
default:
4141
kind: github/pullrequest
4242
scmid: default
43-
title: Bump Debian Bookworm Linux version to {{ source "bookwormLatestVersion" }}
43+
title: Bump Debian Trixie Linux version to {{ source "trixieLatestVersion" }}
4444
spec:
4545
labels:
4646
- dependencies
47-
- debian-bookworm
47+
- debian-trixie

0 commit comments

Comments
 (0)