File tree Expand file tree Collapse file tree 6 files changed +7
-7
lines changed
examples/features/csm_observability Expand file tree Collapse file tree 6 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 15
15
# Dockerfile for building the example client. To build the image, run the
16
16
# following command from grpc-go directory:
17
17
# 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
19
19
20
20
RUN apk --no-cache add curl
21
21
Original file line number Diff line number Diff line change 16
16
# following command from grpc-go directory:
17
17
# docker build -t <TAG> -f examples/features/csm_observability/server/Dockerfile .
18
18
19
- FROM golang:1.21 -alpine as build
19
+ FROM golang:1.23 -alpine as build
20
20
RUN apk --no-cache add curl
21
21
# Make a grpc-go directory and copy the repo into it.
22
22
WORKDIR /go/src/grpc-go
Original file line number Diff line number Diff line change 17
17
# Stage 1: Build the interop test client and server
18
18
#
19
19
20
- FROM golang:1.21 -bullseye as build
20
+ FROM golang:1.23 -bullseye as build
21
21
22
22
WORKDIR /grpc-go
23
23
COPY . .
@@ -36,7 +36,7 @@ RUN go build -o server/ server/server.go && \
36
36
# with the given parameters.
37
37
#
38
38
39
- FROM golang:1.21 -bullseye
39
+ FROM golang:1.23 -bullseye
40
40
41
41
ENV GRPC_GO_LOG_SEVERITY_LEVEL info
42
42
ENV GRPC_GO_LOG_VERBOSITY_LEVEL 2
Original file line number Diff line number Diff line change 16
16
# following command from grpc-go directory:
17
17
# docker build -t <TAG> -f interop/xds/client/Dockerfile .
18
18
19
- FROM golang:1.21 -alpine as build
19
+ FROM golang:1.23 -alpine as build
20
20
21
21
# Make a grpc-go directory and copy the repo into it.
22
22
WORKDIR /go/src/grpc-go
Original file line number Diff line number Diff line change 16
16
# following command from grpc-go directory:
17
17
# docker build -t <TAG> -f interop/xds/server/Dockerfile .
18
18
19
- FROM golang:1.21 -alpine as build
19
+ FROM golang:1.23 -alpine as build
20
20
21
21
# Make a grpc-go directory and copy the repo into it.
22
22
WORKDIR /go/src/grpc-go
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export GOPATH="${HOME}/gopath"
9
9
pushd grpc-go/interop/xds/client
10
10
# Install a version of Go supported by gRPC for the new features, e.g.
11
11
# errors.Is()
12
- gofilename=go1.21 .0.linux-amd64.tar.gz
12
+ gofilename=go1.23 .0.linux-amd64.tar.gz
13
13
curl --retry 3 -O -L " https://go.dev/dl/${gofilename} "
14
14
sudo tar -C /usr/local -xf " ${gofilename} "
15
15
sudo ln -s /usr/local/go/bin/go /usr/bin/go
You can’t perform that action at this time.
0 commit comments