Namespace
library
Image / Tag
python:3.7.6-windowsservercore-ltsc2016
Content Digest
sha256:272e6286c9aa5e784850eef2afada8765224b4f43a128ac214d5cee4edbdcf15
Details
Created

2020-02-20 04:39:49 UTC

Size

5.4 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e

PYTHON_GET_PIP_URL

https://github.com/pypa/get-pip/raw/d59197a3c169cef378a22428a3fa99d33e080a5d/get-pip.py

PYTHON_PIP_VERSION

20.0.2

PYTHON_RELEASE

3.7.6

PYTHON_VERSION

3.7.6


Layers

[#000] sha256:3889bb8d808bbae6fa5a33e07093e65c31371bcf9e4c38c21be6b9af52ad1548 - 70.25% (3.79 GB)

[#001] sha256:846a2223e9e7a88a2a07d706553f144d380483d72fb9f0697c4fcd71773a8693 - 28.6% (1.54 GB)

[#002] sha256:72c4471958f7f0f07260f0f430bcffb0bc07811088c24cffba1439d250ea1ae3 - 0.0% (1.15 KB)

[#003] sha256:6ad8627b118a45bf658930d59a89da4bc60cf3819bd3801e9fa543e4f8f86e93 - 0.0% (1.18 KB)

[#004] sha256:00d13b9686aceeadcb7da8abad655a2b060ca87594a6446ef67f0762849d95ce - 0.0% (1.16 KB)

[#005] sha256:234a36801eb3cb3b8aed8bce473fabebbd2703f3688ff22869ef9c01202a26b0 - 0.97% (53.5 MB)

[#006] sha256:beb4e99060d078c394eb0f67e1beb369e7d27d2c4a0882c22c0ad897de68102a - 0.0% (1.18 KB)

[#007] sha256:0214285b9d3f81b20e66d14067a58da2e3377378a5e5f3b3a216dec5876d424e - 0.0% (1.18 KB)

[#008] sha256:e31d2920cb8b27106932c8651f022f45e60af44437a4b10393922d6e25f63a3a - 0.0% (1.17 KB)

[#009] sha256:f03e414f9d74215e13a7b151b67028187092ffad2a9333736af9989628524fc7 - 0.18% (9.86 MB)

[#010] sha256:7e2a08beb006637f85b24a158f590f44b76fd8567765837a736ecb1aa0bcaf13 - 0.0% (1.16 KB)


History
2016-11-19 17:05:00 UTC

Apply image 1607-RTM-amd64

2020-02-14 21:42:00 UTC

Install update ltsc2016-amd64

2020-02-20 01:48:27 UTC

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

2020-02-20 04:34:19 UTC

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

2020-02-20 04:34:20 UTC

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

2020-02-20 04:37:34 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}-amd64.exe' -f $env:PYTHON_RELEASE, $env:PYTHON_VERSION); Write-Host ('Downloading {0} ...' -f $url); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $url -OutFile 'python.exe'; Write-Host 'Installing ...'; Start-Process python.exe -Wait -ArgumentList @( '/quiet', 'InstallAllUsers=1', 'TargetDir=C:\Python', 'PrependPath=1', 'Shortcuts=0', 'Include_doc=0', 'Include_pip=0', 'Include_test=0' ); $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; Write-Host 'Complete.'

2020-02-20 04:37:36 UTC

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

2020-02-20 04:37:37 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/d59197a3c169cef378a22428a3fa99d33e080a5d/get-pip.py

2020-02-20 04:37:38 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; #(nop) ENV PYTHON_GET_PIP_SHA256=421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e

2020-02-20 04:39:47 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; Write-Host ('Downloading get-pip.py ({0}) ...' -f $env:PYTHON_GET_PIP_URL); [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; Invoke-WebRequest -Uri $env:PYTHON_GET_PIP_URL -OutFile 'get-pip.py'; Write-Host ('Verifying sha256 ({0}) ...' -f $env:PYTHON_GET_PIP_SHA256); if ((Get-FileHash 'get-pip.py' -Algorithm sha256).Hash -ne $env:PYTHON_GET_PIP_SHA256) { Write-Host 'FAILED!'; exit 1; }; Write-Host ('Installing pip=={0} ...' -f $env:PYTHON_PIP_VERSION); python get-pip.py --disable-pip-version-check --no-cache-dir ('pip=={0}' -f $env:PYTHON_PIP_VERSION) ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Complete.'

2020-02-20 04:39:49 UTC

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

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete