Namespace
library
Image / Tag
python:3.8-rc-windowsservercore-ltsc2016
Content Digest
sha256:4ffea0fdc1dffceaee2531a3f85497afa9ecd08022aeb8b23a3d3613bdbd27bc
Details
Created

2019-10-09 17:29:26 UTC

Size

5.39 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

57e3643ff19f018f8a00dfaa6b7e4620e3c1a7a2171fd218425366ec006b3bfe

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

19.2.3

PYTHON_RELEASE

3.8.0

PYTHON_VERSION

3.8.0rc1


Layers

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

[#001] sha256:b4f320e456fcdbb0a55de06f153ad96f144c8c14e452ac7f20896ce2509d170f - 28.53% (1.54 GB)

[#002] sha256:e3d96c7d827bbccac5ad84e6656d83c00ed0b29137247e86e795ea25c8e5f988 - 0.0% (1.19 KB)

[#003] sha256:dcdfb0b5386474260fc86c266e7f45398855c9e4c8b413d1d91a53e46a061095 - 0.0% (1.16 KB)

[#004] sha256:38aec68885cd41a9b7fa0b7605a8a8cef7a7ab1926d72f16c8d9e1b452132001 - 0.0% (1.18 KB)

[#005] sha256:324b1964735c5b8f33cd90bf203c449e6bffb0c5fe45da11435c64f7cfea4d1a - 0.98% (54.4 MB)

[#006] sha256:b3a2b8ee55d8d12ef3db7139fef88b7d022e6e458e53a8f5c8ba9036e056d64b - 0.0% (1.14 KB)

[#007] sha256:8851af82d7b1a05d713fc5a9c37ef72f5f8cfd14d7b21f9afe658a8047e51dfb - 0.0% (1.16 KB)

[#008] sha256:a697a9e6a73bc88f7e2f4a7c4a8f55b2f71ba61d3c8cf709dd1ea08588e4cb85 - 0.0% (1.16 KB)

[#009] sha256:7f1940930b3ca9db9ab70a734ab0c6cbd1f2a16463952e24886784b1fab029fa - 0.18% (9.8 MB)

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


History
2016-11-22 23:24:34 UTC

Apply image 1607-RTM-amd64

2019-10-05 16:15:00 UTC

Install update ltsc2016-amd64

2019-10-09 12:49:42 UTC

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

2019-10-09 17:24:35 UTC

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

2019-10-09 17:24:37 UTC

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

2019-10-09 17:27:32 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.'

2019-10-09 17:27:34 UTC

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

2019-10-09 17:27:35 UTC

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

2019-10-09 17:27:37 UTC

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

2019-10-09 17:29:25 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.'

2019-10-09 17:29:26 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