File tree Expand file tree Collapse file tree 1 file changed +1
-0
lines changed Expand file tree Collapse file tree 1 file changed +1
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ FROM mcr.microsoft.com/powershell
33ARG VERSION=latest
44
55RUN pwsh -c "if ('${VERSION}' -eq 'latest') { Install-Module Microsoft.Graph -Scope CurrentUser -AllowClobber -Force} else { Install-Module Microsoft.Graph -Scope CurrentUser -AllowClobber -Force -RequiredVersion ${VERSION} }"
6+ RUN pwsh -c "if ('${VERSION}' -eq 'latest') { Install-Module Microsoft.Graph.Beta -Scope CurrentUser -AllowClobber -Force} else { Install-Module Microsoft.Graph.Beta -Scope CurrentUser -AllowClobber -Force -RequiredVersion ${VERSION} }"
67RUN pwsh -c "if (!(Test-Path -Path \$ PROFILE)) { New-Item -ItemType File -Path \$ PROFILE -Force } echo 'Import-Module Microsoft.Graph.Authentication' >> \$ PROFILE"
78
89LABEL description="# Welcome to Microsoft Graph PowrShell \
You can’t perform that action at this time.
0 commit comments