Namespace
library
Image / Tag
golang:1.10.6-nanoserver
Content Digest
sha256:91d6cb0d0c19bde0236e1b6ab61da370295453c9e3ac4b13ee340d6c63685414
Details
Created

2018-12-14 11:42:43 UTC

Size

507 MB

Content Digest
Environment
GOLANG_VERSION

1.10.6

GOPATH

C:\gopath


Layers

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

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

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

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

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

[#005] sha256:ebcd13876b4b8a7f1c924fa1c7efea872685af843a4526df4a18a14061771167 - 0.0% (959 Bytes)

[#006] sha256:3e4321527110ad10705ae35b050cbdac3dbcaa0fba08573627c0eba68a266041 - 17.97% (91.1 MB)

[#007] sha256:f381bf8ce2882ddb2279a3644c968cf131b56fd92acc4e4c3bacf35849ebddce - 0.0% (1.14 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-12-14 11:37:30 UTC

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

2018-12-14 11:42:41 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 = 'fc57f16c23b7fb41b664f549ff2ed6cca340555e374c5ff52fa296cd3f228f32'; 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-12-14 11:42:43 UTC

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