AzureRm -> Az; Remove AzureAD (#444)

Change PowerShell modules due to Linux incompatibilities
This commit is contained in:
Ace Eldeib 2018-12-11 12:09:36 -08:00 committed by Jess Frazelle
parent cc75d30bd7
commit 20e08d2abe

View file

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