From 3ce006ab0c5acad5980f4d44872cc09e21f1e8a0 Mon Sep 17 00:00:00 2001 From: francisco souza <108725+fsouza@users.noreply.github.com> Date: Thu, 3 Aug 2023 08:55:10 -0300 Subject: [PATCH] Dockerfile: build with go 1.21rc4 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fbd87b229e..01067a65a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. -FROM golang:1.21rc3 AS builder +FROM golang:1.21rc4 AS builder WORKDIR /code ADD go.mod go.sum ./ RUN go mod download