Namespace
library
Image / Tag
golang:1.12.0-nanoserver-sac2016
Content Digest
sha256:c1c87886c5ab5d4a5c4c7385e11e6092981d7c94016a51e691d7bdf8687de366
Details
Created

2019-02-27 10:47:26 UTC

Size

549 MB

Content Digest
Environment
GOLANG_VERSION

1.12

GOPATH

C:\gopath


Layers

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

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

[#002] sha256:1f72e042ba5d72d27b42026712df029a6a160e9acc59f0ec444c96e610f275d3 - 0.0% (956 Bytes)

[#003] sha256:f276a017370ba20669b97b2114e04abcb6fbc550935652a2fda2f21b007ceb70 - 0.0% (945 Bytes)

[#004] sha256:cd7c4aea0902cfd13e0323d30ee7bee7af103db8b0fa1448d30ad26575fd3279 - 0.16% (921 KB)

[#005] sha256:7707d18121db67d4bda893a724364adb1d2bb789326745b22f2528f73f823c16 - 0.0% (950 Bytes)

[#006] sha256:b8e4218d6da7e4c3feaa48fdda56af1771788c72ed58b89e2186ea2a283fe2c3 - 24.26% (133 MB)

[#007] sha256:a3b7365903b08f9ee4a29d4006d2786dffd3d3c20db861757a94e1f81f26ac6b - 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-12-25 18:43:21 UTC

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

2018-12-25 22:29:52 UTC

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

2018-12-25 22:30:33 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;

2019-02-27 10:41:18 UTC

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

2019-02-27 10:47:24 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 = '880ced1aecef08b3471a84381b6c7e2c0e846b81dd97ecb629b534d941f282bd'; 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.';

2019-02-27 10:47:26 UTC

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