From d584bb67b3197f83eb136a32593992e42143bc2a Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Mon, 23 Apr 2018 14:11:32 -0400 Subject: [PATCH] update Signed-off-by: Jess Frazelle --- powershell-azure/Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/powershell-azure/Dockerfile b/powershell-azure/Dockerfile index d81d05e..f18d6f6 100644 --- a/powershell-azure/Dockerfile +++ b/powershell-azure/Dockerfile @@ -7,6 +7,8 @@ RUN pwsh -c "Install-Module PowerShellGet -Force" # Install the Azure Resource Manager modules from the PowerShell Gallery RUN pwsh -c "Install-Module -Name AzureRM -AllowClobber -Force" -# You will have to load the module into the session with: -# Import-Module -Name AzureRM +# Install Azure Active Directory module +# Install the Azure Active Directory modules from the PowerShell Gallery +RUN pwsh -c "Install-Module -Name AzureAD -AllowClobber -Force" + ENTRYPOINT [ "pwsh" ]