diff --git a/Dockerfile b/Dockerfile index 30e2a400ea65..61aec8fc0da3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ARG BASE_VARIANT=alpine # ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image. # It must be a supported tag in the docker.io/library/alpine image repository # that's also available as alpine image variant for the Golang version used. -ARG ALPINE_VERSION=3.22 +ARG ALPINE_VERSION=3.23 ARG BASE_DEBIAN_DISTRO=bookworm ARG GO_VERSION=1.25.7 diff --git a/dockerfiles/Dockerfile.authors b/dockerfiles/Dockerfile.authors index 09d509d8113f..af660ce54cf7 100644 --- a/dockerfiles/Dockerfile.authors +++ b/dockerfiles/Dockerfile.authors @@ -2,7 +2,7 @@ # ALPINE_VERSION sets the version of the alpine base image to use. # It must be a supported tag in the docker.io/library/alpine image repository. -ARG ALPINE_VERSION=3.22 +ARG ALPINE_VERSION=3.23 FROM alpine:${ALPINE_VERSION} AS gen RUN apk add --no-cache bash git diff --git a/dockerfiles/Dockerfile.dev b/dockerfiles/Dockerfile.dev index f2e71577a8e3..be2def25f0bf 100644 --- a/dockerfiles/Dockerfile.dev +++ b/dockerfiles/Dockerfile.dev @@ -5,7 +5,7 @@ ARG GO_VERSION=1.25.7 # ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image. # It must be a supported tag in the docker.io/library/alpine image repository # that's also available as alpine image variant for the Golang version used. -ARG ALPINE_VERSION=3.22 +ARG ALPINE_VERSION=3.23 # BUILDX_VERSION sets the version of buildx to install in the dev container. # It must be a valid tag in the docker.io/docker/buildx-bin image repository diff --git a/dockerfiles/Dockerfile.lint b/dockerfiles/Dockerfile.lint index 6c5008f2d55c..24076fc00437 100644 --- a/dockerfiles/Dockerfile.lint +++ b/dockerfiles/Dockerfile.lint @@ -5,7 +5,7 @@ ARG GO_VERSION=1.25.7 # ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image. # It must be a supported tag in the docker.io/library/alpine image repository # that's also available as alpine image variant for the Golang version used. -ARG ALPINE_VERSION=3.22 +ARG ALPINE_VERSION=3.23 # GOLANGCI_LINT_VERSION sets the version of the golangci/golangci-lint image to use. ARG GOLANGCI_LINT_VERSION=v2.6.1 diff --git a/dockerfiles/Dockerfile.vendor b/dockerfiles/Dockerfile.vendor index 2296e1336c58..566548f3e3c9 100644 --- a/dockerfiles/Dockerfile.vendor +++ b/dockerfiles/Dockerfile.vendor @@ -5,7 +5,7 @@ ARG GO_VERSION=1.25.7 # ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image. # It must be a supported tag in the docker.io/library/alpine image repository # that's also available as alpine image variant for the Golang version used. -ARG ALPINE_VERSION=3.22 +ARG ALPINE_VERSION=3.23 ARG MODOUTDATED_VERSION=v0.8.0 FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base