From e4511c51f1a1da7265398a50af6b0d869386bc47 Mon Sep 17 00:00:00 2001 From: Matheus Moraes Date: Wed, 31 Jul 2024 12:08:46 -0300 Subject: [PATCH] specify go patch version (#19) * specify go patch version * chore: using floating tags in golang docker image --- Dockerfile | 2 +- go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 73643f2..66f0405 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.22 as builder +FROM golang:1.22 AS builder ARG TARGETOS ARG TARGETARCH diff --git a/go.mod b/go.mod index 8379591..0cbfcee 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/undistro/kubexns -go 1.22.0 +go 1.22.5 require ( k8s.io/api v0.30.0