From c04c0d83326874c91c17e5f87a6f61fbdfad0d60 Mon Sep 17 00:00:00 2001 From: Daniel Mikusa Date: Thu, 6 Jun 2024 21:23:21 -0400 Subject: [PATCH] Update Dockerfile Bump to Go 1.22 since the project update go.mod to 1.22. Signed-off-by: Daniel Mikusa --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 94fe40c..6137eb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20 as build-stage +FROM golang:1.22 as build-stage WORKDIR /src ENV GO111MODULE=on CGO_ENABLED=0