Skip to content

Commit 31ffeee

Browse files
authored
Deps: Bump Go version in Dockerfiles and test/kokoro/xds.sh (#7629)
1 parent 393fbc3 commit 31ffeee

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

examples/features/csm_observability/client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Dockerfile for building the example client. To build the image, run the
1616
# following command from grpc-go directory:
1717
# docker build -t <TAG> -f examples/features/csm_observability/client/Dockerfile .
18-
FROM golang:1.21-alpine as build
18+
FROM golang:1.23-alpine as build
1919

2020
RUN apk --no-cache add curl
2121

examples/features/csm_observability/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# following command from grpc-go directory:
1717
# docker build -t <TAG> -f examples/features/csm_observability/server/Dockerfile .
1818

19-
FROM golang:1.21-alpine as build
19+
FROM golang:1.23-alpine as build
2020
RUN apk --no-cache add curl
2121
# Make a grpc-go directory and copy the repo into it.
2222
WORKDIR /go/src/grpc-go

interop/observability/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Stage 1: Build the interop test client and server
1818
#
1919

20-
FROM golang:1.21-bullseye as build
20+
FROM golang:1.23-bullseye as build
2121

2222
WORKDIR /grpc-go
2323
COPY . .
@@ -36,7 +36,7 @@ RUN go build -o server/ server/server.go && \
3636
# with the given parameters.
3737
#
3838

39-
FROM golang:1.21-bullseye
39+
FROM golang:1.23-bullseye
4040

4141
ENV GRPC_GO_LOG_SEVERITY_LEVEL info
4242
ENV GRPC_GO_LOG_VERBOSITY_LEVEL 2

interop/xds/client/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# following command from grpc-go directory:
1717
# docker build -t <TAG> -f interop/xds/client/Dockerfile .
1818

19-
FROM golang:1.21-alpine as build
19+
FROM golang:1.23-alpine as build
2020

2121
# Make a grpc-go directory and copy the repo into it.
2222
WORKDIR /go/src/grpc-go

interop/xds/server/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# following command from grpc-go directory:
1717
# docker build -t <TAG> -f interop/xds/server/Dockerfile .
1818

19-
FROM golang:1.21-alpine as build
19+
FROM golang:1.23-alpine as build
2020

2121
# Make a grpc-go directory and copy the repo into it.
2222
WORKDIR /go/src/grpc-go

test/kokoro/xds.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export GOPATH="${HOME}/gopath"
99
pushd grpc-go/interop/xds/client
1010
# Install a version of Go supported by gRPC for the new features, e.g.
1111
# errors.Is()
12-
gofilename=go1.21.0.linux-amd64.tar.gz
12+
gofilename=go1.23.0.linux-amd64.tar.gz
1313
curl --retry 3 -O -L "https://go.dev/dl/${gofilename}"
1414
sudo tar -C /usr/local -xf "${gofilename}"
1515
sudo ln -s /usr/local/go/bin/go /usr/bin/go

0 commit comments

Comments
 (0)