From 2ae2a47c39593eb85c7e5446f5b59e4072da0315 Mon Sep 17 00:00:00 2001 From: aptalca Date: Tue, 24 Nov 2020 23:02:45 -0500 Subject: [PATCH] add verbosity to yarn --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c76cd46..bcc6f27 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,7 +45,7 @@ RUN \ fi && \ CODE_VERSION=$(echo "$CODE_RELEASE" | awk '{print substr($1,2); }') && \ yarn config set network-timeout 600000 -g && \ - yarn --production --frozen-lockfile global add code-server@"$CODE_VERSION" && \ + yarn --production --verbose --frozen-lockfile global add code-server@"$CODE_VERSION" && \ yarn cache clean && \ echo "**** clean up ****" && \ apt-get purge --auto-remove -y \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index fac2a06..cd4f211 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -45,7 +45,7 @@ RUN \ fi && \ CODE_VERSION=$(echo "$CODE_RELEASE" | awk '{print substr($1,2); }') && \ yarn config set network-timeout 600000 -g && \ - yarn --production --frozen-lockfile global add code-server@"$CODE_VERSION" && \ + yarn --production --verbose --frozen-lockfile global add code-server@"$CODE_VERSION" && \ yarn cache clean && \ echo "**** clean up ****" && \ apt-get purge --auto-remove -y \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 3290e4e..5822ad0 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -45,7 +45,7 @@ RUN \ fi && \ CODE_VERSION=$(echo "$CODE_RELEASE" | awk '{print substr($1,2); }') && \ yarn config set network-timeout 600000 -g && \ - yarn --production --frozen-lockfile global add code-server@"$CODE_VERSION" && \ + yarn --production --verbose --frozen-lockfile global add code-server@"$CODE_VERSION" && \ yarn cache clean && \ echo "**** clean up ****" && \ apt-get purge --auto-remove -y \