Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-04-23 14:11:32 -04:00
parent 5be2df4859
commit d584bb67b3
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

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