Namespace
library
Image / Tag
python:windowsservercore-ltsc2022
Content Digest
sha256:9a2213c9030b077593f532dc08356ce8acec02b838202f4294eda3bbaa739ed6
Details
Created

2026-04-14 21:27:27 UTC

Size

1.98 GB

Content Digest
Environment
PYTHONIOENCODING

UTF-8

PYTHON_SHA256

b571567bd11ea98fd7a2cf85791d2c8557a63b1e04e9d1dae665a275cac87f1b

PYTHON_VERSION

3.14.4


Layers

[#000] sha256:3cc21a1b754848d23f00aa65cb94ec34c9a5dc6028b3aada42039c824738d02f - 69.86% (1.39 GB)

[#001] sha256:7111ae68f8961455d230dc12d44c2193d29b7c981e35417323613a0c1aa06384 - 27.27% (554 MB)

[#002] sha256:123169191bc868b3dd631fce589535bd12a560eb17f3da89a78dcc3b427e5096 - 0.0% (1.31 KB)

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

[#004] sha256:08439f2319bef6d50fd921cb2640df87872aad696f4c6d6f970bc3cde976e22e - 0.0% (1.28 KB)

[#005] sha256:1d40e1ef00a05272774744ca9493b77c8ac42bb719453b16bd15c64794f6b0cf - 0.0% (1.3 KB)

[#006] sha256:23129191cd06d6d760f143093dac47b1339a486bcca350ac31eba49d7c53026f - 2.87% (58.3 MB)

[#007] sha256:e4d6b8bedb5bcf85b12a590540f16bb3f3c22f6a8dcef554ca4e679541719692 - 0.0% (1.28 KB)


History
2025-10-09 07:51:18 UTC

Apply image 10.0.20348.4294

2026-04-13 03:24:09 UTC

Install update 10.0.20348.5020

2026-04-14 21:13:37 UTC

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

2026-04-14 21:26:35 UTC

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

2026-04-14 21:26:35 UTC

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

2026-04-14 21:26:35 UTC

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

2026-04-14 21:27:26 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:27:27 UTC

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