From ce0d56623f022115248013cd8c6d3a67f9faa53f Mon Sep 17 00:00:00 2001 From: yoyowang268 <99775959+yoyowang268@users.noreply.github.com> Date: Mon, 16 Jun 2025 17:19:52 -0700 Subject: [PATCH 1/2] add --loglevel verbose --- linux/base.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/base.Dockerfile b/linux/base.Dockerfile index 984f711c..ca6df45d 100644 --- a/linux/base.Dockerfile +++ b/linux/base.Dockerfile @@ -209,7 +209,7 @@ RUN curl -fsSL https://aka.ms/install-azd.sh | bash && \ # # Install Office 365 CLI templates # - npm install -q -g @pnp/cli-microsoft365 && \ + npm install -q -g @pnp/cli-microsoft365 --loglevel verbose && \ # # Install Bicep CLI # From 3c10347eac0596b97354954976edc799a251aec3 Mon Sep 17 00:00:00 2001 From: yoyowang268 <99775959+yoyowang268@users.noreply.github.com> Date: Fri, 20 Jun 2025 12:40:51 -0700 Subject: [PATCH 2/2] Update --debug for az extension --- linux/tools.Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/tools.Dockerfile b/linux/tools.Dockerfile index be0fdd7c..a07a251f 100644 --- a/linux/tools.Dockerfile +++ b/linux/tools.Dockerfile @@ -38,8 +38,8 @@ RUN tdnf clean all && \ rm -rf /var/cache/tdnf/* # Install any Azure CLI extensions that should be included by default. -RUN az extension add --system --name ssh -y \ - && az extension add --system --name ml -y +RUN az extension add --system --name ssh -y --debug \ + && az extension add --system --name ml -y --debug # Install kubectl RUN az aks install-cli \