Skip to content

Commit 1b1b7a9

Browse files
authored
Merge pull request #2404 from murgatroid99/grpc-js-xds_docker_node_18
grpc-js-xds: Use Node 18 in interop docker image
2 parents 8692419 + e48b2ca commit 1b1b7a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/grpc-js-xds/interop/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# following command from grpc-node directory:
1717
# docker build -t <TAG> -f packages/grpc-js-xds/interop/Dockerfile .
1818

19-
FROM node:16-slim as build
19+
FROM node:18-slim as build
2020

2121
# Make a grpc-node directory and copy the repo into it.
2222
WORKDIR /node/src/grpc-node
@@ -27,7 +27,7 @@ RUN npm install
2727
WORKDIR /node/src/grpc-node/packages/grpc-js-xds
2828
RUN npm install
2929

30-
FROM node:16-slim
30+
FROM node:18-slim
3131
WORKDIR /node/src/grpc-node
3232
COPY --from=build /node/src/grpc-node/packages/grpc-js ./packages/grpc-js/
3333
COPY --from=build /node/src/grpc-node/packages/grpc-js-xds ./packages/grpc-js-xds/

0 commit comments

Comments
 (0)