Skip to content

Commit

Permalink
Merge pull request #2398 from murgatroid99/grpc-js-xds_interop_not_al…
Browse files Browse the repository at this point in the history
…pine

grpc-js-xds: Use non-alpine docker image for interop tests
  • Loading branch information
murgatroid99 committed Mar 23, 2023
2 parents bb0a09a + 6f17499 commit 8692419
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/grpc-js-xds/interop/Dockerfile
Expand Up @@ -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:16-slim as build

# Make a grpc-node directory and copy the repo into it.
WORKDIR /node/src/grpc-node
Expand All @@ -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:16-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/
Expand Down

0 comments on commit 8692419

Please sign in to comment.