Namespace
library
Image / Tag
python:3.9.0b5-windowsservercore-ltsc2016
Content Digest
sha256:0229ced9d1f25f02186c5b73de8cba87e5d316e1dbddca595353d845c6368b7e
Details
Created

2020-08-11 20:36:09 UTC

Size

5.41 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

d4d62a0850fe0c2e6325b2cc20d818c580563de5a2038f917e3cb0e25280b4d1

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.2.2

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0b5


Layers

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

[#001] sha256:b2151f69990007e1df0a2a0a68997c72a9ce7546d653d17a482a51cc3323c047 - 28.7% (1.55 GB)

[#002] sha256:32838d9637dc39d4acee78700b0f93d6c8c9d2db755f12c8009c1b51687d3fbd - 0.0% (1.12 KB)

[#003] sha256:a92d243b40a3b4f707b6bc59b74e99e07a5f312f42428bac866a67f97e7b1761 - 0.0% (1.14 KB)

[#004] sha256:6be6f7d3edda720ae835a76f1661b30cf88b206330b7607804c646626c634427 - 0.0% (1.19 KB)

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

[#006] sha256:c6563b29ad23e82a27fab238294ae2ca5f040aa41d0cfaf997fdfa8270cb8b37 - 0.0% (1.11 KB)

[#007] sha256:8124d82d260eb4fe844c6e7aa080222d959b5cfcf98eddde7d0de2a01e41ec46 - 0.0% (1.16 KB)

[#008] sha256:98a2e5af68aed35d3cadc96047a0f91079cc78e7a3d62439cc636344c14ad833 - 0.0% (1.1 KB)

[#009] sha256:9c34594bda60cfe2d7eb53103d06e0697bbf14c11d33d21d920d5bf5d7023c07 - 0.27% (14.7 MB)

[#010] sha256:67731f01c49ebd57f7199c68642e621eb24f00014209618d412400fa08fb675d - 0.0% (1.1 KB)


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

Apply image 1607-RTM-amd64

2020-08-05 13:27:00 UTC

Install update ltsc2016-amd64

2020-08-11 20:31:19 UTC

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

2020-08-11 20:31:20 UTC

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

2020-08-11 20:31:21 UTC

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

2020-08-11 20:34:09 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-08-11 20:34:11 UTC

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

2020-08-11 20:34:12 UTC

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

2020-08-11 20:34:14 UTC

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

2020-08-11 20:36: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-08-11 20:36:09 UTC

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