diff --git a/powershell-azure/Dockerfile b/powershell-azure/Dockerfile new file mode 100644 index 0000000..00a35c3 --- /dev/null +++ b/powershell-azure/Dockerfile @@ -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" ]