From 3b9b3115a32daec14f9672d2bc10403c5d20eddc Mon Sep 17 00:00:00 2001 From: Marvin Zhang Date: Thu, 10 Apr 2025 17:41:56 +0800 Subject: [PATCH] chore: update Go base image version in Dockerfile - Changed the base image from golang:1.22.9 to golang:1.23 to leverage the latest features and improvements. - Ensured alignment with existing coding standards and maintained consistency in the Dockerfile structure. --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 7f7b41ac..7b167fe3 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.9 AS build +FROM golang:1.23 AS build # Context path is the root of the repository