From d1da48c35666550f2dc9e274d12b005f29309d8d Mon Sep 17 00:00:00 2001 From: Harshvardhan Parmar Date: Thu, 20 Nov 2025 09:52:26 +0530 Subject: [PATCH] Update Go base image to version 1.24.0 Updating Golang base image to 1.24.0 as our mod file is using go 1.24.0 as per #207 Signed-off-by: Harsh4902 --- build/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/Dockerfile b/build/Dockerfile index 2fcdd85..93b9532 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,5 +1,5 @@ # Build binary -FROM --platform=$BUILDPLATFORM golang:1.23.0-alpine AS build-env +FROM --platform=$BUILDPLATFORM golang:1.24.0-alpine AS build-env ADD . /app WORKDIR /app ARG TARGETOS @@ -29,4 +29,4 @@ COPY --from=build-env /app/microcks ${CLI} COPY build/bin /usr/local/bin RUN /usr/local/bin/user_setup -USER ${USER_UID} \ No newline at end of file +USER ${USER_UID}