From 6806b4a197cddc3784d4719369dec017248bfc07 Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Sat, 8 Aug 2020 10:27:34 -0700 Subject: [PATCH] Doing silent npm install --- docker/mainnet/Dockerfile | 2 +- docker/testnet/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/mainnet/Dockerfile b/docker/mainnet/Dockerfile index 0df3a30..fd17890 100644 --- a/docker/mainnet/Dockerfile +++ b/docker/mainnet/Dockerfile @@ -18,7 +18,7 @@ USER safeuser WORKDIR /home/safeuser RUN git clone https://github.com/Permissionless-Software-Foundation/bch-api WORKDIR /home/safeuser/bch-api -RUN npm install +RUN npm install --silent # Generate documentation RUN npm run docs diff --git a/docker/testnet/Dockerfile b/docker/testnet/Dockerfile index 46dafb7..f366a18 100644 --- a/docker/testnet/Dockerfile +++ b/docker/testnet/Dockerfile @@ -15,7 +15,7 @@ USER safeuser WORKDIR /home/safeuser RUN git clone https://github.com/Permissionless-Software-Foundation/bch-api WORKDIR /home/safeuser/bch-api -RUN npm install +RUN npm install --silent # Generate documentation RUN npm run docs