Namespace
library
Image / Tag
python:3.9.0a2-windowsservercore-ltsc2016
Content Digest
sha256:0f931fbf7b4f5b34d7152b5fa4767907454d00712bd66d8717abdbf23f3ef509
Details
Created

2020-01-25 02:25:09 UTC

Size

5.39 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

da288fc002d0bb2b90f6fbabc91048c1fa18d567ad067ee713c6e331d3a32b45

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.0.2

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0a2


Layers

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

[#001] sha256:31f9df80631e7b5d379647ee7701ff50e009bd2c03b30a67a0a8e7bba4a26f94 - 28.57% (1.54 GB)

[#002] sha256:f1c8c4c99f36cfcf87884a9382011e93fb05fa4002d8f4eca62a43e744db8e95 - 0.0% (1.18 KB)

[#003] sha256:7f60ba3543b91ac7f38130b7fe2a33deef043aebb92567909577370a7c13767e - 0.0% (1.18 KB)

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

[#005] sha256:92e5320a0263f3736d6855d5d8a24a944e2b2a3aecefdd26d5fbeba002cfad81 - 0.99% (54.6 MB)

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

[#007] sha256:0175014ecf74f269167a6ce65d8e7000d2c1a32b3cdf0c397523f5a700052ce9 - 0.0% (1.12 KB)

[#008] sha256:879831daf1edf9c5a959fb56d256fe065cb0e57c68e676c56eef0c4b51f6324a - 0.0% (1.18 KB)

[#009] sha256:8d7ff75202cb73eb147888076e9586d5513554665655ad996aa1d3475e148a98 - 0.18% (9.93 MB)

[#010] sha256:8fbc8bc63719ea916690bd29800eb3694856c714c73dc8bf2e08bcc44dfa78ed - 0.0% (1.18 KB)


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

Apply image 1607-RTM-amd64

2020-01-02 15:48:00 UTC

Install update ltsc2016-amd64

2020-01-14 23:50:17 UTC

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

2020-01-15 17:55:54 UTC

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

2020-01-15 17:55:56 UTC

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

2020-01-15 17:59:05 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-01-25 02:22:41 UTC

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

2020-01-25 02:22:42 UTC

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

2020-01-25 02:22:43 UTC

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

2020-01-25 02:25:08 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-01-25 02:25:09 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