From 0ad7175c06074b7951ef44f9be20e9b3c44d946e Mon Sep 17 00:00:00 2001 From: "cluster-stack-bot[bot]" <143188378+cluster-stack-bot[bot]@users.noreply.github.com> Date: Thu, 9 Jan 2025 11:12:33 +0000 Subject: [PATCH] :seedling: Update Cspo Image group | datasource | package | from | to | | ---------- | ------------------------ | ------ | ------ | | docker | docker.io/library/alpine | 3.20.3 | 3.21.2 | | docker | docker.io/library/golang | 1.23.3 | 1.23.4 | --- images/cspo/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/images/cspo/Dockerfile b/images/cspo/Dockerfile index 1223e30c..aeccd25b 100644 --- a/images/cspo/Dockerfile +++ b/images/cspo/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # Build the manager binary -FROM --platform=${BUILDPLATFORM} docker.io/library/golang:1.23.3-bullseye as build +FROM --platform=${BUILDPLATFORM} docker.io/library/golang:1.23.4-bullseye as build ARG TARGETOS TARGETARCH COPY . /src/cluster-stack-provider-openstack @@ -23,7 +23,7 @@ RUN --mount=type=cache,target=/root/.cache --mount=type=cache,target=/go/pkg \ go build -mod=vendor -trimpath -ldflags "-s -w ${LDFLAGS} -extldflags '-static'" \ -o manager cmd/main.go -FROM --platform=${BUILDPLATFORM} docker.io/library/alpine:3.20.3 +FROM --platform=${BUILDPLATFORM} docker.io/library/alpine:3.21.2 WORKDIR / COPY --from=build /src/cluster-stack-provider-openstack/manager .