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

2020-05-13 15:00:30 UTC

Size

5.4 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

ce486cddac44e99496a702aa5c06c5028414ef48fdfd5242cd2fe559b13d4348

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0a6


Layers

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

[#001] sha256:b940e70a4619b357d89f3dcabf4ac263d1efc65e1ef3af64cb0e8fbeaccc64dd - 28.65% (1.55 GB)

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

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

[#004] sha256:9d456627f48d9a748c2a867b41558d0a979fd43501593e4521acdf7ca2600e98 - 0.0% (1.1 KB)

[#005] sha256:0b777d9d964b35f7c9ce88987ecd3233036181b75f5725a106cc58cb9d913af8 - 1.0% (55.4 MB)

[#006] sha256:de245dc6a76ba5970e208f74c3f590fbfb00aca7327b0dea453b63980523e648 - 0.0% (1.06 KB)

[#007] sha256:84914d8e94359c0bc784341a0243f1cd8a246ce48284d28f6b61cefd62c89db6 - 0.0% (1.06 KB)

[#008] sha256:8987407e1b1666b7c13d13911ac6ccd3c17c633393e62e2e61078aa65a0ff864 - 0.0% (1.15 KB)

[#009] sha256:68ad0642c681dccb3a4f10724a8e7abe6e5c35a19068a8c1593ef48fe88b0e7f - 0.18% (10.1 MB)

[#010] sha256:e7deea405e8f23c54abeae56b3414284f0f4388f0253fb0cc22ed26e099e9b2b - 0.0% (1.05 KB)


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

Apply image 1607-RTM-amd64

2020-05-04 15:24:00 UTC

Install update ltsc2016-amd64

2020-05-13 12:34:33 UTC

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

2020-05-13 14:56:22 UTC

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

2020-05-13 14:56:23 UTC

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

2020-05-13 14:58:47 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-05-13 14:58:49 UTC

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

2020-05-13 14:58:51 UTC

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

2020-05-13 14:58:52 UTC

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

2020-05-13 15:00:29 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-05-13 15:00:30 UTC

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