mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
20e08d2abe
Change PowerShell modules due to Linux incompatibilities
11 lines
305 B
Docker
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" ]
|