Namespace
library
Image / Tag
python:3.9.0b4-windowsservercore-ltsc2016
Content Digest
sha256:f09e68dac3352065feae23c35cdbed2b7a930bf39053254d53d0e78ef593e35c
Details
Created

2020-07-15 15:15:51 UTC

Size

5.41 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

b3153ec0cf7b7bbf9556932aa37e4981c35dc2a2c501d70d91d2795aa532be79

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1.1

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0b4


Layers

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

[#001] sha256:802c4beb8b091968ccf1bb4a853ded7955ddb79e6f8775a5155cb5ed07dcbcab - 28.69% (1.55 GB)

[#002] sha256:9a64f8d0454dba1fb133615caae6ab4d76b85b8be54102ee2ce5f7fd034edbff - 0.0% (1.1 KB)

[#003] sha256:8c092947b8e0a4b70ab2057dc4d839f279a3e97a44dbbd5cf1c6d78625d19706 - 0.0% (1.1 KB)

[#004] sha256:669e656db332a6c560d8c59bbca5791b50d32fd04f0d848f609cbfbc396103f0 - 0.0% (1.12 KB)

[#005] sha256:bd674549405d948fa68fc5e261c6a7cc39f0f2e978311a069b31768ea21af4c4 - 1.01% (55.8 MB)

[#006] sha256:188c5057c62c16ebd66671dd8fa2f5ea5852b3ac6b228517ce774a4224a74c49 - 0.0% (1.12 KB)

[#007] sha256:9b16cbd68fc02b4db0e46b2447f1f621f9837378398fad7610d1722ac0450e46 - 0.0% (1.16 KB)

[#008] sha256:5a62f921fdee54169f1144917e019deee414b1099f9356de34c2928dfedc7cac - 0.0% (1.11 KB)

[#009] sha256:044a084f9497c4602cdb79648891a1ebdd0ce42cf242ebf248e198a68a217641 - 0.26% (14.7 MB)

[#010] sha256:267879af5c9452d2fb96868b24e7aaa200c82fe7d9ac0d196f88461b6b85ecc3 - 0.0% (1.1 KB)


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

Apply image 1607-RTM-amd64

2020-07-07 21:05:00 UTC

Install update ltsc2016-amd64

2020-07-14 18:34:08 UTC

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

2020-07-15 15:11:08 UTC

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

2020-07-15 15:11:08 UTC

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

2020-07-15 15:13:48 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-07-15 15:13:49 UTC

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

2020-07-15 15:13:51 UTC

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

2020-07-15 15:13:52 UTC

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

2020-07-15 15:15:50 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-07-15 15:15:51 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