Skip to content

Commit c31abc4

Browse files
caniszczyksnyk-bot
andauthored
fix: tool/codegen/Dockerfile to reduce vulnerabilities (#6304)
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 <shin@warashi.dev> Co-authored-by: snyk-bot <snyk-bot@snyk.io>
1 parent 738066c commit c31abc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tool/codegen/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Builder image to build go program.
2-
FROM golang:1.25.0 AS builder
2+
FROM golang:1.25.2 AS builder
33

44
COPY protoc-gen-auth /protoc-gen-auth
55
RUN cd /protoc-gen-auth \
66
&& go build -o /usr/local/bin/protoc-gen-auth . \
77
&& chmod +x /usr/local/bin/protoc-gen-auth
88

99
# Codegen image which is actually being used.
10-
FROM golang:1.25.0
10+
FROM golang:1.25.2
1111

1212
# This is version of protobuf installed in the image.
1313
# See https://pkgs.alpinelinux.org/packages?name=protobuf&branch=v3.16

0 commit comments

Comments
 (0)