Namespace
library
Image / Tag
golang:1.25.9-windowsservercore-ltsc2025
Content Digest
sha256:2d3af86654b6a1f9331dad0ae2c7d1f7d21bc615adeec973f8358cf9c68f6038
Details
Created

2026-04-14 21:14:02 UTC

Size

2.09 GB

Content Digest
Environment
GIT_DOWNLOAD_SHA256

11e8f462726827acccc7ecdad541f2544cbe5506d70fef4fa1ffac7c16288709

GIT_DOWNLOAD_URL

https://github.com/git-for-windows/git/releases/download/v2.48.1.windows.1/MinGit-2.48.1-64-bit.zip

GIT_TAG

v2.48.1.windows.1

GIT_VERSION

2.48.1

GOLANG_VERSION

1.25.9

GOPATH

C:\go


Layers

[#000] sha256:0938cf51b672b81c9804d1d5f0c57031c931f41b279270e84820c63642d6a3bd - 67.87% (1.42 GB)

[#001] sha256:3642e4b8bb65ad3768f9f74a0dc48bb2e3294779b5d51573a234bfbe4f65324e - 27.04% (579 MB)

[#002] sha256:542156dc4bd1c1a73ddac3dd0873d561b928c373878346d2ca11e4ce987ef5e0 - 0.0% (1.28 KB)

[#003] sha256:0086a4c01ede5607fbc6748f25807a5334d3eb099f709954637ebfe288590571 - 0.0% (1.29 KB)

[#004] sha256:c9c24d5f551b9a17a441f7d0869717d99b6a6f5757f735c69639983895221cc4 - 0.0% (1.26 KB)

[#005] sha256:71ec3633355fae11ae63da2a92c7f2145b469fca1be7bc51cf316baa68c05cec - 0.0% (1.29 KB)

[#006] sha256:197627d4974f56805dac372e1d5959f763eff6c9c464c18251a1d4fc003acdd6 - 0.0% (1.29 KB)

[#007] sha256:38fd50af269eb9f3ebe1fdd91cbef025f19890b167978edc9974522d8bd3c3bd - 2.28% (48.9 MB)

[#008] sha256:b7d2bc3ffd9f37b5f536bd16b952f36ddb0076ae0f68528c370c476574a325e4 - 0.0% (1.26 KB)

[#009] sha256:5bbb81742f1fdbe6f565ca54bf802a9b7c1b5c3f20ff388f78e39a4cd822a71e - 0.02% (348 KB)

[#010] sha256:1d2475f3a9c707d9a71510fd85596af1a4e9597de1765c376cb6416dc3818833 - 0.0% (1.29 KB)

[#011] sha256:02d57d1f3f045539bf75a6a82aa1d362553c86b8ddc673a62d3d0b4b3a0b5c04 - 2.79% (59.7 MB)

[#012] sha256:f8039180e581c166e6f59e7d8fb67fdab933ad04695363579bee20cd3c73a41a - 0.0% (1.44 KB)


History
2026-01-11 09:57:36 UTC

Apply image 10.0.26100.32230

2026-04-13 07:00:46 UTC

Install update 10.0.26100.32690

2026-04-14 21:02:14 UTC

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

2026-04-14 21:12:17 UTC

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

2026-04-14 21:12:17 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_TAG=v2.48.1.windows.1

2026-04-14 21:12:18 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_URL=https://github.com/git-for-windows/git/releases/download/v2.48.1.windows.1/MinGit-2.48.1-64-bit.zip

2026-04-14 21:12:19 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV GIT_DOWNLOAD_SHA256=11e8f462726827acccc7ecdad541f2544cbe5506d70fef4fa1ffac7c16288709

2026-04-14 21:12:32 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading {0} ...' -f $env:GIT_DOWNLOAD_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:GIT_DOWNLOAD_URL -OutFile 'git.zip'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:GIT_DOWNLOAD_SHA256); if ((Get-FileHash git.zip -Algorithm sha256).Hash -ne $env:GIT_DOWNLOAD_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive -Path git.zip -DestinationPath C:\git\.; Write-Host 'Removing ...'; Remove-Item git.zip -Force; Write-Host 'Updating PATH ...'; $env:PATH = 'C:\git\cmd;C:\git\mingw64\bin;C:\git\usr\bin;' + $env:PATH; [Environment]::SetEnvironmentVariable('PATH', $env:PATH, [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ("git version") ...'; git version; Write-Host 'Complete.';

2026-04-14 21:12:32 UTC

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

2026-04-14 21:12:37 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('{0}\bin;C:\Program Files\Go\bin;{1}' -f $env:GOPATH, $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine);

2026-04-14 21:12:38 UTC

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

2026-04-14 21:14:02 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://dl.google.com/go/go1.25.9.windows-amd64.zip'; Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'go.zip'; $sha256 = 'a7a710e225467b34e9e09fb432b829c86c9b2da5821ee5418f7eb2e8ae1a22cc'; 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 'Moving ...'; Move-Item -Path C:\go -Destination 'C:\Program Files\Go'; Write-Host 'Removing ...'; Remove-Item go.zip -Force; Write-Host 'Verifying install ("go version") ...'; go version; Write-Host 'Complete.';

2026-04-14 21:14:02 UTC

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