From aac9563733f7fdb61cfaa2a5a8e9932b249ea31e Mon Sep 17 00:00:00 2001 From: James Kwon <96548424+hongil0316@users.noreply.github.com> Date: Wed, 8 Jan 2025 17:30:52 -0500 Subject: [PATCH] Increase the go version for Dockerfile to 1.23.0 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 41fce43..fcf6f69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # Start from the official Go image to build the binary. # Use the same version of Go as your project (1.21.5). -FROM golang:1.21.5 AS builder +FROM golang:1.23.0 AS builder # Set the working directory inside the container. WORKDIR /go/src/app