From a1bc4f865d571dd6d72d1abcf8d833d02b61666f Mon Sep 17 00:00:00 2001 From: Ciprian Hacman Date: Wed, 3 Apr 2024 21:36:06 +0300 Subject: [PATCH] Update Go to v1.22.2 I removed the SHA256 because the tag is reused for updates. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index cc4b91e0..905f6e60 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ ARG BASEIMAGE # Must override builder-base, not builder, since the latter is referred to later in the file and so must not be # directly replaced. See here, and note that "stage" parameter mentioned there has been renamed to # "build-context": https://github.com/docker/buildx/pull/904#issuecomment-1005871838 -FROM golang:1.22.1-bookworm@sha256:d996c645c9934e770e64f05fc2bc103755197b43fd999b3aa5419142e1ee6d78 as builder-base +FROM golang:1.22.2-bookworm as builder-base FROM builder-base as builder LABEL maintainer="Andy Xie "