Skip to content

Commit ad6d650

Browse files
committed
Revert "Use cd instead of WORKDIR in Dockerfile"
1 parent 67cfbae commit ad6d650

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

packages/grpc-js-xds/interop/Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ FROM node:16-alpine as build
2222
WORKDIR /node/src/grpc-node
2323
COPY . .
2424

25-
RUN cd packages/grpc-js && npm install
26-
RUN cd packages/grpc-js-xds && npm install
25+
WORKDIR /node/src/grpc-node/packages/grpc-js
26+
RUN npm install
27+
WORKDIR /node/src/grpc-node/packages/grpc-js-xds
28+
RUN npm install
2729

2830
FROM node:16-alpine
2931
WORKDIR /node/src/grpc-node

0 commit comments

Comments
 (0)