From 73ec2eca31115f2cab3650fd487f067a6d181df4 Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 9 Oct 2025 10:30:44 +0000 Subject: [PATCH] fix: tool/codegen/Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-DEBIAN13-PCRE2-12206155 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174592 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174592 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174602 - https://snyk.io/vuln/SNYK-DEBIAN13-OPENSSL-13174605 Signed-off-by: Shinnosuke Sawada-Dazai --- tool/codegen/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/codegen/Dockerfile b/tool/codegen/Dockerfile index cfa9fa6feb..fff502b3b4 100644 --- a/tool/codegen/Dockerfile +++ b/tool/codegen/Dockerfile @@ -1,5 +1,5 @@ # Builder image to build go program. -FROM golang:1.25.0 AS builder +FROM golang:1.25.2 AS builder COPY protoc-gen-auth /protoc-gen-auth RUN cd /protoc-gen-auth \ @@ -7,7 +7,7 @@ RUN cd /protoc-gen-auth \ && chmod +x /usr/local/bin/protoc-gen-auth # Codegen image which is actually being used. -FROM golang:1.25.0 +FROM golang:1.25.2 # This is version of protobuf installed in the image. # See https://pkgs.alpinelinux.org/packages?name=protobuf&branch=v3.16