From dfababcec65314d5505c93319baf42d63d6df5af Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Mon, 26 Mar 2018 08:52:50 -0400 Subject: [PATCH] add comment Signed-off-by: Jess Frazelle --- powershell-azure/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) 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" ]