mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-03-24 22:25:14 +01:00
11 lines
310 B
Docker
11 lines
310 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"
|
||
|
|
||
|
ENTRYPOINT [ "pwsh" ]
|