File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM mcr.microsoft.com/powershell:latest
55RUN groupadd -r appgroup && useradd -r -g appgroup appuser
66
77# Update package lists and install wget and unzip.
8- RUN apt-get --no-install-recommends update && apt-get install -y wget unzip
8+ RUN apt-get --no-install-recommends update && apt-get --no-install-recommends install -y wget unzip
99
1010# Install the Az PowerShell module for Azure authentication
1111RUN pwsh -Command "Install-Module -Name Az.Accounts -RequiredVersion 2.12.0 -Force -Scope AllUsers"
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ FROM mcr.microsoft.com/powershell:latest
55RUN groupadd -r appgroup && useradd -r -g appgroup appuser
66
77# Update package lists and install wget and unzip.
8- RUN apt-get --no-install-recommends update && apt-get install -y wget unzip
8+ RUN apt-get --no-install-recommends update && apt-get --no-install-recommends install -y wget unzip
99
1010# Install the Az PowerShell module for Azure authentication
1111RUN pwsh -Command "Install-Module -Name Az.Accounts -RequiredVersion 2.12.0 -Force -Scope AllUsers"
You can’t perform that action at this time.
0 commit comments