|
| 1 | +ARG core=mcr.microsoft.com/windows/servercore:ltsc2019 |
| 2 | +ARG target=mcr.microsoft.com/windows/servercore:ltsc2019 |
| 3 | +FROM $core as download |
| 4 | + |
| 5 | +SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] |
| 6 | + |
| 7 | +ENV GPG_VERSION 2.3.4 |
| 8 | + |
| 9 | +RUN Invoke-WebRequest $('https://files.gpg4win.org/gpg4win-vanilla-{0}.exe' -f $env:GPG_VERSION) -OutFile 'gpg4win.exe' -UseBasicParsing ; \ |
| 10 | + Start-Process .\gpg4win.exe -ArgumentList '/S' -NoNewWindow -Wait |
| 11 | + |
| 12 | +RUN @( \ |
| 13 | + '94AE36675C464D64BAFA68DD7434390BDBE9B9C5', \ |
| 14 | + 'FD3A5288F042B6850C66B31F09FE44734EB7990E', \ |
| 15 | + '71DCFD284A79C3B38668286BC97EC7A07EDE3FC1', \ |
| 16 | + 'DD8F2338BAE7501E3DD5AC78C273792F7D83545D', \ |
| 17 | + 'C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8', \ |
| 18 | + 'B9AE9905FFD7803F25714661B63B535A4C206CA9', \ |
| 19 | + '77984A986EBC2AA786BC0F66B01FBB92821C587A', \ |
| 20 | + '8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600', \ |
| 21 | + '4ED778F539E3634C779C87C6D7062848A1AB005C', \ |
| 22 | + 'A48C2BEE680E841632CD4E44F07496B3EB3C1762', \ |
| 23 | + 'B9E2F5981AA6E0CD28160D9FF13993A75599653C' \ |
| 24 | + ) | foreach { \ |
| 25 | + gpg --keyserver ha.pool.sks-keyservers.net --recv-keys $_ ; \ |
| 26 | + } |
| 27 | + |
| 28 | +ENV NODE_VERSION 12.16.1 |
| 29 | + |
| 30 | +RUN Invoke-WebRequest $('https://nodejs.org/dist/v{0}/SHASUMS256.txt.asc' -f $env:NODE_VERSION) -OutFile 'SHASUMS256.txt.asc' -UseBasicParsing ; \ |
| 31 | + gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc |
| 32 | + |
| 33 | +RUN Invoke-WebRequest $('https://nodejs.org/dist/v{0}/node-v{0}-win-x64.zip' -f $env:NODE_VERSION) -OutFile 'node.zip' -UseBasicParsing ; \ |
| 34 | + $sum = $(cat SHASUMS256.txt.asc | sls $(' node-v{0}-win-x64.zip' -f $env:NODE_VERSION)) -Split ' ' ; \ |
| 35 | + if ((Get-FileHash node.zip -Algorithm sha256).Hash -ne $sum[0]) { Write-Error 'SHA256 mismatch' } ; \ |
| 36 | + Expand-Archive node.zip -DestinationPath C:\ ; \ |
| 37 | + Rename-Item -Path $('C:\node-v{0}-win-x64' -f $env:NODE_VERSION) -NewName 'C:\nodejs' |
| 38 | + |
| 39 | +ENV YARN_VERSION 1.13.0 |
| 40 | + |
| 41 | +RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; \ |
| 42 | + Invoke-WebRequest $('https://yarnpkg.com/downloads/{0}/yarn-{0}.msi' -f $env:YARN_VERSION) -OutFile yarn.msi -UseBasicParsing ; \ |
| 43 | + $sig = Get-AuthenticodeSignature yarn.msi ; \ |
| 44 | + if ($sig.Status -ne 'Valid') { Write-Error 'Authenticode signature is not valid' } ; \ |
| 45 | + Write-Output $sig.SignerCertificate.Thumbprint ; \ |
| 46 | + if (@( \ |
| 47 | + '7E253367F8A102A91D04829E37F3410F14B68A5F', \ |
| 48 | + 'AF764E1EA56C762617BDC757C8B0F3780A0CF5F9' \ |
| 49 | + ) -notcontains $sig.SignerCertificate.Thumbprint) { Write-Error 'Unknown signer certificate' } ; \ |
| 50 | + Start-Process msiexec.exe -ArgumentList '/i', 'yarn.msi', '/quiet', '/norestart' -NoNewWindow -Wait |
| 51 | + |
| 52 | +ENV GIT_VERSION 2.20.1 |
| 53 | +ENV GIT_DOWNLOAD_URL https://github.com/git-for-windows/git/releases/download/v${GIT_VERSION}.windows.1/MinGit-${GIT_VERSION}-busybox-64-bit.zip |
| 54 | +ENV GIT_SHA256 9817ab455d9cbd0b09d8664b4afbe4bbf78d18b556b3541d09238501a749486c |
| 55 | + |
| 56 | +RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; \ |
| 57 | + Invoke-WebRequest -UseBasicParsing $env:GIT_DOWNLOAD_URL -OutFile git.zip; \ |
| 58 | + if ((Get-FileHash git.zip -Algorithm sha256).Hash -ne $env:GIT_SHA256) {exit 1} ; \ |
| 59 | + Expand-Archive git.zip -DestinationPath C:\git; \ |
| 60 | + Remove-Item git.zip |
| 61 | + |
| 62 | +FROM $target |
| 63 | + |
| 64 | +SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] |
| 65 | + |
| 66 | +ENV NPM_CONFIG_LOGLEVEL info |
| 67 | + |
| 68 | +COPY --from=download /nodejs /nodejs |
| 69 | +COPY --from=download [ "/Program Files (x86)/yarn", "/yarn" ] |
| 70 | +COPY --from=download /git /git |
| 71 | + |
| 72 | +RUN $env:PATH = 'C:\nodejs;C:\yarn\bin;C:\git\cmd;C:\git\mingw64\bin;C:\git\usr\bin;{0}' -f $env:PATH ; \ |
| 73 | + [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine) |
| 74 | + |
| 75 | +CMD [ "node.exe" ] |
0 commit comments