Namespace
library
Image / Tag
golang:1.11.0-nanoserver
Content Digest
sha256:7211b2dfe70f7659f925f3cf6a502f9c9841554f931fbec2b42a70dd5f2f3b9e
Details
Created

2018-08-27 22:50:40 UTC

Size

530 MB

Content Digest
Environment
GOLANG_VERSION

1.11

GOPATH

C:\gopath


Layers

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

[#001] sha256:4a14bdf6da80603aa5007acea8d5ea659958b0bd1b31d31078023ca0d1c8ee05 - 30.18% (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:0c12e25692853958031e0b4cc4e4ac2f56180d68d53126cfedac059966ef0eb0 - 0.0% (952 Bytes)

[#006] sha256:4abbb809e9ec660403e298bbec9e30371442b76b6520fbeb91f0cfbcaa333d88 - 24.19% (128 MB)

[#007] sha256:2ba4e1cc03c5cf0424dc07035aba02cc5ae0a7dfd1935bb3fd8c1e7d992835e2 - 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-27 22:44:31 UTC

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

2018-08-27 22:50:38 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 = '29f9291270f0b303d0b270f993972ead215b1bad3cc674a0b8a09699d978aeb4'; 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-27 22:50:40 UTC

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