Namespace
library
Image / Tag
golang:1.11.2-nanoserver-sac2016
Content Digest
sha256:f3ffe2178f29ace0d943866984adcae87385e1b2824ce2012f4aab7f50025874
Details
Created

2018-11-03 09:53:19 UTC

Size

544 MB

Content Digest
Environment
GOLANG_VERSION

1.11.2

GOPATH

C:\gopath


Layers

[#000] sha256:bce2fbc256ea437a87dadac2f69aabd25bed4f56255549090056c1131fad0277 - 44.32% (241 MB)

[#001] sha256:6f2071dcd7294537bba55b3061704ef1370748e91982193b9e0fa4ebc114589b - 32.04% (174 MB)

[#002] sha256:84ae235f2e45284e5e9ac7a3cbff5c49b4aee1b6496cc598c15ea9ad88e2b5ac - 0.0% (951 Bytes)

[#003] sha256:270858daa30bb67080a2038bda3a388a640b81d1bc773e0c5cf151ea9b331c9e - 0.0% (953 Bytes)

[#004] sha256:65ede88e5de7e5c78ad6a2c7780b76635a59026a142e9f551bf2b2475d8b22c1 - 0.17% (922 KB)

[#005] sha256:c946279533fb3ec099515ccec9cd95077d14ee863cb3fb367b7e459a6c904f5b - 0.0% (943 Bytes)

[#006] sha256:197ad554a9f4197e421edf6121bfce3d49cd5216c90411d67d739609c6c41e26 - 23.47% (128 MB)

[#007] sha256:c80106d69ebe6775debd0915f25bc0a2ee476ad2d4092021e5223bec376894c9 - 0.0% (1.13 KB)


History
2018-09-17 20:04:15 UTC

Apply image 10.0.14393.0

2018-10-09 18:02:39 UTC

Install update 10.0.14393.2551

2018-10-10 10:53:14 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) SHELL [powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';]

2018-11-03 09:45:53 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOPATH=C:\gopath

2018-11-03 09:46:46 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\bin;C:\go\bin;{1}' -f $env:GOPATH, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); setx /M PATH $newPath;

2018-11-03 09:46:49 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GOLANG_VERSION=1.11.2

2018-11-03 09:53:17 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://golang.org/dl/go{0}.windows-amd64.zip' -f $env:GOLANG_VERSION); Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'go.zip'; $sha256 = '086c59df0dce54d88f30edd50160393deceb27e73b8d6b46b9ee3f88b0c02e28'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash go.zip -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive go.zip -DestinationPath C:\; Write-Host 'Verifying install ("go version") ...'; go version; Write-Host 'Removing ...'; Remove-Item go.zip -Force; Write-Host 'Complete.';

2018-11-03 09:53:19 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) WORKDIR C:\gopath