Namespace
library
Image / Tag
golang:1.11beta1-nanoserver-sac2016
Content Digest
sha256:ff4511f7748a2c3ea33d0c810cdc3c0cbee4b44e70be023fd7d5de21c8ce1f5b
Details
Created

2018-07-13 10:22:04 UTC

Size

569 MB

Content Digest
Environment
GOLANG_VERSION

1.11beta1

GOPATH

C:\gopath


Layers

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

[#001] sha256:d4a9b16fd154d065649f42ee7ac674690d46dbe6ad2398a58166c37c85ca64ed - 27.96% (159 MB)

[#002] sha256:c00083f7064e157d9aa12ed2cde81fc21da017ab3b1d2d05cf45ee282d465ddd - 0.0% (952 Bytes)

[#003] sha256:ef6f6a14ad0e696cedcbe505e01a2bf1818e607a6ec5a52345bea2ceea9958a5 - 0.0% (954 Bytes)

[#004] sha256:1f096412574b846b311a8fc2b4f4e10b0d97a38c502b8db601d0d5f3b31ed8e0 - 0.16% (908 KB)

[#005] sha256:1f3671562b6b1c59613833bde249489161efeeddc3031eb2b769f773c6d5cc0b - 0.0% (937 Bytes)

[#006] sha256:4b5eb132f6bba4c39a6ef4eba3e97910b8625cc9dc40171de10ce45fff1adaac - 29.53% (168 MB)

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


History
2016-12-13 10:47:17 UTC

Apply image 10.0.14393.0

2018-07-10 21:16:01 UTC

Install update 10.0.14393.2363

2018-07-11 09:44:58 UTC

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

2018-07-13 10:15:39 UTC

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

2018-07-13 10:16:28 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-07-13 10:16:29 UTC

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

2018-07-13 10:22:02 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 = '1eeb874a919143f3e62b641ccd5ebbfd1b3d4f2184de1d6497f7b2b6df996960'; 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-07-13 10:22:04 UTC

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