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
4 changes: 2 additions & 2 deletions dockerfiles/agent-discovery/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.

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

# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
COPY *sh /usr/local/bin/
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/sidekick/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This Dockerfile is used to prepare a Debian-based Docker image with several utilities installed.

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

# Copy all shell scripts from the current directory to /usr/local/bin/ in the image.
COPY *sh /usr/local/bin/
Expand Down
14 changes: 7 additions & 7 deletions updatecli/updatecli.d/debian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ scms:
branch: "{{ .github.branch }}"

sources:
bookwormLatestVersion:
trixieLatestVersion:
kind: dockerimage
name: "Get the latest Debian Bookworm Linux version"
name: "Get the latest Debian Trixie Linux version"
spec:
image: "debian"
tagfilter: "bookworm-*"
tagfilter: "trixie-*"
versionfilter:
kind: regex
pattern: >-
bookworm-\d+$
trixie-\d+$

targets:
debian:
Expand All @@ -34,14 +34,14 @@ targets:
instruction:
keyword: FROM
matcher: debian
sourceid: bookwormLatestVersion
sourceid: trixieLatestVersion

actions:
default:
kind: github/pullrequest
scmid: default
title: Bump Debian Bookworm Linux version to {{ source "bookwormLatestVersion" }}
title: Bump Debian Trixie Linux version to {{ source "trixieLatestVersion" }}
spec:
labels:
- dependencies
- debian-bookworm
- debian-trixie
Loading