dockerfiles/powershell-azure/Dockerfile
Jess Frazelle dfababcec6
add comment
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2018-03-26 08:52:50 -04:00

13 lines
399 B
Docker

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"
# You will have to load the module into the session with:
# Import-Module -Name AzureRM
ENTRYPOINT [ "pwsh" ]