Namespace
library
Image / Tag
python:3.8.0-windowsservercore-ltsc2016
Content Digest
sha256:5b1ed2530c5237239e2e335eee8840f8e75e3ad596a168b524b14dd9ba644de2
Details
Created

2019-12-11 00:50:38 UTC

Size

5.39 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

b86f36cc4345ae87bfd4f10ef6b2dbfa7a872fbff70608a1e43944d283fd0eee

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

19.3.1

PYTHON_RELEASE

3.8.0

PYTHON_VERSION

3.8.0


Layers

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

[#001] sha256:55d044e60c8959ce88aee467913bb11827c1ec057a2fd108a293e274dbd74f1d - 28.54% (1.54 GB)

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

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

[#004] sha256:b64755da1dd805cf4985a9a66cd129adf8f45c9392523c9835f8e380a0a168ca - 0.0% (1.15 KB)

[#005] sha256:b076f8541e5941e32e12143adbc65e1537fcce754c3d7217e57f3a6fceb5c53d - 0.98% (54.3 MB)

[#006] sha256:3bfa5e9d9c9a7e70055fcd3d7ddc44494b2d050193966a885ba7f127d8367712 - 0.0% (1.18 KB)

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

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

[#009] sha256:4eb54e6ff619f315b17602aeb6d751bc449435d9a7f861f17e208584c79694a0 - 0.18% (9.85 MB)

[#010] sha256:9e116357fa8cc21dba22a55e7a00880931c648141c4ae67062356df3a21bff3c - 0.0% (1.18 KB)


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

Apply image 1607-RTM-amd64

2019-11-27 14:43:00 UTC

Install update ltsc2016-amd64

2019-12-11 00:35:49 UTC

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

2019-12-11 00:45:42 UTC

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

2019-12-11 00:45:43 UTC

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

2019-12-11 00:48:38 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-12-11 00:48:40 UTC

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

2019-12-11 00:48:42 UTC

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

2019-12-11 00:48:43 UTC

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

2019-12-11 00:50:36 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-12-11 00:50:38 UTC

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