From 5db9ee5260283da64cd1541e5a6c5d2f6f883e64 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Wed, 10 Jul 2024 22:09:43 +0000 Subject: [PATCH] chore(deps): update golang docker tag to v1.22.5 --- Dockerfile | 4 ++-- operator/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 901397c..2879916 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ARG EXPOSE_PORT_PROTOCOL="tcp" ARG USERNAME="archer" -FROM golang:1.22.4-alpine as gopiler +FROM golang:1.22.5-alpine as gopiler ARG SRC_DIR ARG PKG_DIR RUN mkdir -p ${PKG_DIR} @@ -33,7 +33,7 @@ RUN make html RUN tree ${PKG_DIR}/${DOC_DIR}/build/ -FROM golang:1.22.4-alpine as runner +FROM golang:1.22.5-alpine as runner ARG PKG_DIR ARG DOC_DIR ARG USERNAME diff --git a/operator/Dockerfile b/operator/Dockerfile index e167fa3..b51c111 100644 --- a/operator/Dockerfile +++ b/operator/Dockerfile @@ -1,7 +1,7 @@ ARG AK_VERSION=0.0.0 ARG AKM_VERSION=0.0.0 # Build the manager binary -FROM golang:1.22.4-alpine as builder +FROM golang:1.22.5-alpine as builder ARG TARGETOS ARG TARGETARCH