add powershell azure;

Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
This commit is contained in:
Jess Frazelle 2018-03-26 08:52:15 -04:00
parent 4869a44737
commit 59cbf8f4b2
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -0,0 +1,10 @@
FROM r.j3ss.co/powershell:latest
# Install/Update PowerShellGet
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"
ENTRYPOINT [ "pwsh" ]