From 112332d4b73a379206043c87e5a8a9ad40b13879 Mon Sep 17 00:00:00 2001 From: Siddhartha Basu Date: Fri, 25 Oct 2024 13:52:47 -0500 Subject: [PATCH] chore(Dockerfile): update Go base image from 1.22.2 to 1.22.8 for security and performance improvements The Go base image is updated to the latest patch version to ensure that the application benefits from the latest security fixes and performance enhancements provided by the Go team. --- build/package/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/package/Dockerfile b/build/package/Dockerfile index 951e8f0..8a6a23a 100644 --- a/build/package/Dockerfile +++ b/build/package/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.2-bullseye AS builder +FROM golang:1.22.8-bullseye AS builder LABEL maintainer="Siddhartha Basu " ENV GOPROXY https://proxy.golang.org ENV CGO_ENABLED=0 \