From 1a6eabb05ab35eedb87d2557b8fd70ac399ffea2 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Wed, 17 Apr 2024 16:27:57 -0600 Subject: [PATCH] chore(internal/postprocessor): restore go version 1.21 in Dockerfile * Fix broken new module command go get go@1.19. refs: #9718 --- internal/postprocessor/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/postprocessor/Dockerfile b/internal/postprocessor/Dockerfile index 2025efb6cdde..c3c6d575274a 100644 --- a/internal/postprocessor/Dockerfile +++ b/internal/postprocessor/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.20 as builder +FROM golang:1.21 as builder # Copy local code to the container image. COPY . /postprocessor/