Namespace
library
Image / Tag
golang:1.10.3-nanoserver
Content Digest
sha256:d80ef56c6252d73ad4b50852c9cbaf949e7c521a94d549da39cf40083f5d4117
Details
Created

2018-08-23 11:32:16 UTC

Size

534 MB

Content Digest
Environment
GOLANG_VERSION

1.10.3

GOPATH

C:\gopath


Layers

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

[#001] sha256:4a14bdf6da80603aa5007acea8d5ea659958b0bd1b31d31078023ca0d1c8ee05 - 29.95% (160 MB)

[#002] sha256:82e4f9af58cb76c5ad8ef2e3e09f4256ab17e1c38cc0ed0d04cb7b509b76fe56 - 0.0% (950 Bytes)

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

[#004] sha256:014e815f07fec289d73b99033d1558f1e990b566bb274025a610e8b2d650680a - 0.17% (913 KB)

[#005] sha256:53461d236ef8d9807e2b6862ff66cc6676781886c03f94286d7d883d43a1bd0c - 0.0% (952 Bytes)

[#006] sha256:7065cee29c4754b21963fb0121f1839282788a4deec1a741cf395c0ca5052b70 - 24.77% (132 MB)

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


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

Apply image 10.0.14393.0

2018-08-13 17:51:52 UTC

Install update 10.0.14393.2430

2018-08-15 09:43:51 UTC

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

2018-08-23 10:59:52 UTC

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

2018-08-23 11:00: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-08-23 11:26:47 UTC

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

2018-08-23 11:32:14 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 = 'a3f19d4fc0f4b45836b349503e347e64e31ab830dedac2fc9c390836d4418edb'; 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-08-23 11:32:16 UTC

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