From 7b914a7f6165ba002a7e1b41f5043dbe5221b8c6 Mon Sep 17 00:00:00 2001 From: Jay Rogers Date: Thu, 21 Aug 2025 15:18:25 -0500 Subject: [PATCH] Update to Alpine 3.22 and Debian Trixie --- .github/workflows/service_docker-build-and-publish.yml | 4 ++-- src/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/service_docker-build-and-publish.yml b/.github/workflows/service_docker-build-and-publish.yml index 9ef413b..31004b7 100644 --- a/.github/workflows/service_docker-build-and-publish.yml +++ b/.github/workflows/service_docker-build-and-publish.yml @@ -20,8 +20,8 @@ jobs: strategy: matrix: base_os: - - alpine:3.20 - - debian:bookworm-slim + - alpine:3.22 + - debian:trixie-slim steps: - name: Check out code. uses: actions/checkout@v4 diff --git a/src/Dockerfile b/src/Dockerfile index c28b90b..f0edbdd 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,4 +1,4 @@ -ARG BUILD_BASE_OS_VERSION=alpine:3.20 +ARG BUILD_BASE_OS_VERSION=alpine:3.22 FROM ${BUILD_BASE_OS_VERSION} ARG BUILD_GITHUB_CLI_VERSION=2.60.0