From 6792c8bbfa5e554de9f0e673705a854c0541a9a7 Mon Sep 17 00:00:00 2001 From: Kevin Rowlandson Date: Wed, 1 Jul 2020 11:12:45 +0100 Subject: [PATCH] Remove version (7) from PowerShell directory path --- Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13a1a261..56bc44a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,17 +39,18 @@ RUN apk add --no-cache \ ######################################### # Reference: https://docs.microsoft.com/en-us/powershell/scripting/install/installing-powershell-core-on-linux?view=powershell-7 # Slightly modified to always retrieve latest stable Powershell version -# Specify PSScriptAnalyzer Repository and Version for stability +# If changing PWSH_VERSION='latest' to a specific version, use format PWSH_VERSION='tags/v7.0.2' ARG PWSH_VERSION='latest' +ARG PWSH_DIRECTORY='/opt/microsoft/powershell' ARG PSSA_VERSION='latest' -RUN mkdir -p /opt/microsoft/powershell/7 \ +RUN mkdir -p ${PWSH_DIRECTORY} \ && curl -s https://api.github.com/repos/powershell/powershell/releases/${PWSH_VERSION} \ | grep browser_download_url \ | grep linux-alpine-x64 \ | cut -d '"' -f 4 \ | xargs -n 1 wget -O - \ - | tar -xzC /opt/microsoft/powershell/7 \ - && ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh \ + | tar -xzC ${PWSH_DIRECTORY} \ + && ln -s ${PWSH_DIRECTORY}/pwsh /usr/bin/pwsh -f \ && pwsh -c 'Install-Module -Name PSScriptAnalyzer -RequiredVersion ${PSSA_VERSION} -Scope AllUsers -Force' #####################