Make mvn commands quieter

This commit is contained in:
Stanley Cheung 2020-07-08 16:19:22 -07:00 committed by Stanley Cheung
parent a913c18158
commit 25a888c974
1 changed files with 2 additions and 2 deletions

View File

@ -34,9 +34,9 @@ WORKDIR /github/grpc-web
RUN git clone https://github.com/grpc/grpc-web . && \
cd src/connector && \
mvn install && \
mvn install --no-transfer-progress && \
cd ../../net/grpc/gateway/examples/grpc-web-java/interop-test-service && \
mvn package
mvn package --no-transfer-progress
ENTRYPOINT ["java", "-cp", "net/grpc/gateway/examples/grpc-web-java/interop-test-service/target/interop-test-0.1-jar-with-dependencies.jar", "grpcweb.examples.StartServiceAndGrpcwebProxy"]