mirror of https://github.com/grpc/grpc-node.git
Merge pull request #2404 from murgatroid99/grpc-js-xds_docker_node_18
grpc-js-xds: Use Node 18 in interop docker image
This commit is contained in:
commit
1b1b7a95b2
|
@ -16,7 +16,7 @@
|
|||
# following command from grpc-node directory:
|
||||
# docker build -t <TAG> -f packages/grpc-js-xds/interop/Dockerfile .
|
||||
|
||||
FROM node:16-slim as build
|
||||
FROM node:18-slim as build
|
||||
|
||||
# Make a grpc-node directory and copy the repo into it.
|
||||
WORKDIR /node/src/grpc-node
|
||||
|
@ -27,7 +27,7 @@ RUN npm install
|
|||
WORKDIR /node/src/grpc-node/packages/grpc-js-xds
|
||||
RUN npm install
|
||||
|
||||
FROM node:16-slim
|
||||
FROM node:18-slim
|
||||
WORKDIR /node/src/grpc-node
|
||||
COPY --from=build /node/src/grpc-node/packages/grpc-js ./packages/grpc-js/
|
||||
COPY --from=build /node/src/grpc-node/packages/grpc-js-xds ./packages/grpc-js-xds/
|
||||
|
|
Loading…
Reference in New Issue