grpc-js-xds: Use Debian and Node 18 in interop Dockerfile (1.6.x)

This commit is contained in:
Michael Lumish 2023-04-03 09:54:38 -07:00
parent fc63719eda
commit dec8e60391
1 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@
# following command from grpc-node directory:
# docker build -t <TAG> -f packages/grpc-js-xds/interop/Dockerfile .
FROM node:16-alpine 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-alpine
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/