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" ]