dockerfiles/powershell-azure/Dockerfile
Ace Eldeib 20e08d2abe AzureRm -> Az; Remove AzureAD (#444)
Change PowerShell modules due to Linux incompatibilities
2018-12-11 15:09:36 -05:00

11 lines
305 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 Az -AllowClobber -Force"
ENTRYPOINT [ "pwsh" ]