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 \