Skip to content

Commit 1f6b319

Browse files
committed
Dockerfile: update alpine to 3.23
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent df016a3 commit 1f6b319

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG BASE_VARIANT=alpine
55
# ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image.
66
# It must be a supported tag in the docker.io/library/alpine image repository
77
# that's also available as alpine image variant for the Golang version used.
8-
ARG ALPINE_VERSION=3.22
8+
ARG ALPINE_VERSION=3.23
99
ARG BASE_DEBIAN_DISTRO=bookworm
1010

1111
ARG GO_VERSION=1.25.7

dockerfiles/Dockerfile.authors

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# ALPINE_VERSION sets the version of the alpine base image to use.
44
# It must be a supported tag in the docker.io/library/alpine image repository.
5-
ARG ALPINE_VERSION=3.22
5+
ARG ALPINE_VERSION=3.23
66

77
FROM alpine:${ALPINE_VERSION} AS gen
88
RUN apk add --no-cache bash git

dockerfiles/Dockerfile.dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG GO_VERSION=1.25.7
55
# ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image.
66
# It must be a supported tag in the docker.io/library/alpine image repository
77
# that's also available as alpine image variant for the Golang version used.
8-
ARG ALPINE_VERSION=3.22
8+
ARG ALPINE_VERSION=3.23
99

1010
# BUILDX_VERSION sets the version of buildx to install in the dev container.
1111
# It must be a valid tag in the docker.io/docker/buildx-bin image repository

dockerfiles/Dockerfile.lint

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG GO_VERSION=1.25.7
55
# ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image.
66
# It must be a supported tag in the docker.io/library/alpine image repository
77
# that's also available as alpine image variant for the Golang version used.
8-
ARG ALPINE_VERSION=3.22
8+
ARG ALPINE_VERSION=3.23
99
# GOLANGCI_LINT_VERSION sets the version of the golangci/golangci-lint image to use.
1010
ARG GOLANGCI_LINT_VERSION=v2.6.1
1111

dockerfiles/Dockerfile.vendor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ ARG GO_VERSION=1.25.7
55
# ALPINE_VERSION sets the version of the alpine base image to use, including for the golang image.
66
# It must be a supported tag in the docker.io/library/alpine image repository
77
# that's also available as alpine image variant for the Golang version used.
8-
ARG ALPINE_VERSION=3.22
8+
ARG ALPINE_VERSION=3.23
99
ARG MODOUTDATED_VERSION=v0.8.0
1010

1111
FROM golang:${GO_VERSION}-alpine${ALPINE_VERSION} AS base

0 commit comments

Comments
 (0)