diff --git a/powershell-azure/Dockerfile b/powershell-azure/Dockerfile index 00a35c3..d81d05e 100644 --- a/powershell-azure/Dockerfile +++ b/powershell-azure/Dockerfile @@ -7,4 +7,6 @@ RUN pwsh -c "Install-Module PowerShellGet -Force" # 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" ]