Skip to content

Commit c2e5715

Browse files
committed
chore: bump go1.25
Signed-off-by: Junya Okabe <okabe.junya.qj@alumni.tsukuba.ac.jp>
1 parent 2cdfb52 commit c2e5715

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tool/codegen/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# Builder image to build go program.
2-
FROM golang:1.24.3 AS builder
2+
FROM golang:1.25.0 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.24.3
10+
FROM golang:1.25.0
1111

1212
# This is version of protobuf installed in the image.
1313
# See https://pkgs.alpinelinux.org/packages?name=protobuf&branch=v3.16
@@ -17,7 +17,7 @@ ENV PROTOC_GEN_GO_VER=1.27.1
1717
ENV PROTOC_GEN_GRPC_WEB_VER=1.3.1
1818
ENV PROTOC_GEN_GO_GRPC_VER=1.2.0
1919
ENV PROTOC_GEN_VALIDATE_VER=0.6.6
20-
ENV GOMOCK_VER=0.5.0
20+
ENV GOMOCK_VER=0.6.0
2121

2222
# dependecies and protoc
2323
RUN apt update && apt install -y protobuf-compiler

0 commit comments

Comments
 (0)