Namespace
library
Image / Tag
python:3.15.0a8-windowsservercore-ltsc2025
Content Digest
sha256:32086585ee58e5bd3958c68f9a5e2bb44bcdd21718ee372ce85d0579c61c05c5
Details
Created

2026-04-14 21:16:17 UTC

Size

2.04 GB

Content Digest
Environment
PYTHONIOENCODING

UTF-8

PYTHON_SHA256

ff7c6f5012cee08ed9a63fdfae4a3e22e927a32112de723b3777710a52391ea5

PYTHON_VERSION

3.15.0a8


Layers

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

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

[#002] sha256:a4711c60c626d22b2f2d56d494b2425d70d2b0f65d92b37ccf360786a4c4ffd7 - 0.0% (1.3 KB)

[#003] sha256:9ea43d48990f5221968664c8cc183c02aec9315323a03747da8f34e065a3fcd2 - 0.0% (1.29 KB)

[#004] sha256:ae551592dd7de535ce7d0d583547a4dac42ba71b591af510b72f08ae3741dc86 - 0.0% (1.29 KB)

[#005] sha256:94261bbaa69ad3f99fe9dbb2d477ab00795bdfbfb4bf1b7f4f03cec6a749ec49 - 0.0% (1.28 KB)

[#006] sha256:dff843f1aef5523938c8cd37ec53e5fd51dad4a9531a0e4d916cbab3fd9a978f - 2.96% (61.9 MB)

[#007] sha256:53677acf772d3cbcb3025d71d955febda8c8fbc3393e31c016ac8ac4bdb8f823 - 0.0% (1.29 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:03:41 UTC

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

2026-04-14 21:15:32 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHONIOENCODING=UTF-8

2026-04-14 21:15:32 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_VERSION=3.15.0a8

2026-04-14 21:15:34 UTC

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

2026-04-14 21:16:15 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f ($env:PYTHON_VERSION -replace '[a-z]+[0-9]*$', ''), $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_SHA256); if ((Get-FileHash python.exe -Algorithm sha256).Hash -ne $env:PYTHON_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Installing ...'; $exitCode = (Start-Process python.exe -Wait -NoNewWindow -PassThru -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=1', 'Include_test=0' ) ).ExitCode; if ($exitCode -ne 0) { Write-Host ('Running python installer failed with exit code: {0}' -f $exitCode); Get-ChildItem $env:TEMP | Sort-Object -Descending -Property LastWriteTime | Select-Object -First 1 | Get-Content; exit $exitCode; } $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.exe -Force; Remove-Item $env:TEMP/Python*.log -Force; $env:PYTHONDONTWRITEBYTECODE = '1'; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.'

2026-04-14 21:16:17 UTC

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