From 20e08d2abe1890537d59dacdcf36d3c31fefa238 Mon Sep 17 00:00:00 2001 From: Ace Eldeib Date: Tue, 11 Dec 2018 12:09:36 -0800 Subject: [PATCH] AzureRm -> Az; Remove AzureAD (#444) Change PowerShell modules due to Linux incompatibilities --- powershell-azure/Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/powershell-azure/Dockerfile b/powershell-azure/Dockerfile index f18d6f6..d397c41 100644 --- a/powershell-azure/Dockerfile +++ b/powershell-azure/Dockerfile @@ -5,10 +5,6 @@ RUN pwsh -c "Install-Module PowerShellGet -Force" # Install Azure PowerShell module # Install the Azure Resource Manager modules from the PowerShell Gallery -RUN pwsh -c "Install-Module -Name AzureRM -AllowClobber -Force" - -# Install Azure Active Directory module -# Install the Azure Active Directory modules from the PowerShell Gallery -RUN pwsh -c "Install-Module -Name AzureAD -AllowClobber -Force" +RUN pwsh -c "Install-Module -Name Az -AllowClobber -Force" ENTRYPOINT [ "pwsh" ]