Namespace
library
Image / Tag
golang:1.25.13-windowsservercore-ltsc2025
Content Digest
sha256:fdb33c4482b6a83e37c8e88d8d2b64f3cea9d98afbf85121ca4e69e14a0590db
Details
Created

2026-08-13 19:46:30 UTC

Size

2.38 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.13

GOPATH

C:\go


Layers

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

[#001] sha256:0e5abeeefbb7b11eb6332573ca632d3d8807213461f1b97f3cfee8899a29583f - 35.92% (875 MB)

[#002] sha256:26681caa515d52f547dbaf41d1c7563e6cbfe01efc7b1e4b19f8f7b95e0f0ff9 - 0.0% (1.27 KB)

[#003] sha256:3e09db9974edd5acfc59fd598df3fd17ea496c74405bc8d958ac2d8696cdd0b2 - 0.0% (1.25 KB)

[#004] sha256:69c2242e2c9905f1aed61884e152b29b07e2181fe696793c267f1499f784b91d - 0.0% (1.23 KB)

[#005] sha256:d5170153330cfd7f23cf64fff214e83b76e18f22a1d249308100e6370435c999 - 0.0% (1.25 KB)

[#006] sha256:b1f5790abccce8ea34c403d6c88c713421692ea3bf9c0f0fb811b2202fe73217 - 0.0% (1.26 KB)

[#007] sha256:c5a11b044932977ff22db8d64165c0f34f757d0d0fbd28c3c3c10948280f36f3 - 2.0% (48.8 MB)

[#008] sha256:bf6085f466ca0252d5db5e4562e5fda8514d0e9338e64a26b50f1e1bac7de29c - 0.0% (1.27 KB)

[#009] sha256:b54d2c1fdc4c0f1d57fcb7ea2bf4b24ebdefb0073dc7cca27271ffff09311fdd - 0.01% (342 KB)

[#010] sha256:d4d946dc3876a2582355eb1d1e1acec9cfa273c63034ef25a4dcb183970b33e0 - 0.0% (1.23 KB)

[#011] sha256:d99ac3be6cf54cc2ed4fde34ede78b21814d1dec5b3c004173663cee29346280 - 2.45% (59.8 MB)

[#012] sha256:03fc8c2c997b06be163bfbf59bf5de3e13e6670fe2be328751a29a6a0e96c431 - 0.0% (1.41 KB)


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

Apply image 10.0.26100.32230

2026-08-09 09:10:21 UTC

Install update 10.0.26100.33296

2026-08-13 19:43:13 UTC

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

2026-08-13 19:43:15 UTC

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

2026-08-13 19:43:16 UTC

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

2026-08-13 19:43: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-08-13 19:43:19 UTC

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

2026-08-13 19:44:36 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-08-13 19:44:37 UTC

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

2026-08-13 19:44:46 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-08-13 19:44:46 UTC

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

2026-08-13 19:46:29 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://dl.google.com/go/go1.25.13.windows-amd64.zip'; Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'go.zip'; $sha256 = '54a6bbffada82938ac4ae66e354b2e9c04ebdceff96f8d0455406c723b5ed1fc'; 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-08-13 19:46:30 UTC

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