From 9fc9c1e4dcccf97aef2f0fdec6aadc145b1b38d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Aug 2026 22:05:01 +0000 Subject: [PATCH] chore(deps): bump golang from 1.26-alpine to 1.27rc3-alpine Bumps golang from 1.26-alpine to 1.27rc3-alpine. --- updated-dependencies: - dependency-name: golang dependency-version: 1.27rc3-alpine dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 45ae3fea7..4d388d415 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Image page: -FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.26-alpine AS builder +FROM --platform=${TARGETPLATFORM:-linux/amd64} golang:1.27rc3-alpine AS builder # app version and build date must be passed during image building (version without any prefix). # e.g.: `docker build --build-arg "APP_VERSION=1.2.3" --build-arg "BUILD_TIME=$(date +%FT%T%z)" .`