Namespace
library
Image / Tag
python:3.8.0rc1-windowsservercore-1803
Content Digest
sha256:5ddaebadc0ab81e8142d479a91e0280a9555db3da66be7497351df0fe5cd3302
Details
Created

2019-10-09 17:33:18 UTC

Size

2.24 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:d9e8b01179bfc94a5bdb1810fbd76b999aa52016001ace2d3a4c4bc7065a9601 - 68.99% (1.55 GB)

[#001] sha256:d8f170766a535406983bc5b2ee79c71e7926e6f5580d50e3cb2540aaf4aeb32a - 28.63% (657 MB)

[#002] sha256:ea7ccb23adfb015b938b092cea99550a661417af468d80b14b0560777f162e6a - 0.0% (1.16 KB)

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

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

[#005] sha256:c5e71f59604b079e961b5e7b76f32a02bb05bc43f4601091a190c994d36baff2 - 2.16% (49.6 MB)

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

[#007] sha256:a68ef8b4c416e66b97894bde65d4d5f3580e8204acf32f13f12a5e141f6f11da - 0.0% (1.17 KB)

[#008] sha256:9ca491a9c34ce960bc6758996790b7260d26f21f61578054ac3cfa004e0116d6 - 0.0% (1.15 KB)

[#009] sha256:3e8d8f3b817c76637786f21f4cb44bd8a71d84eb0bc1218cfef8bdcbecc72409 - 0.22% (5.03 MB)

[#010] sha256:16a855e74424ad087d18527803e52d77c85a462389a24f73ec25aeb8babd1c79 - 0.0% (1.15 KB)


History
2018-04-12 09:20:54 UTC

Apply image 1803-RTM-amd64

2019-10-06 14:03:04 UTC

Install update 1803-amd64

2019-10-09 12:59:45 UTC

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

2019-10-09 17:29:37 UTC

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

2019-10-09 17:29:38 UTC

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

2019-10-09 17:32:06 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:32:08 UTC

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

2019-10-09 17:32:10 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:32:11 UTC

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

2019-10-09 17:33:17 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:33:18 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