Namespace
library
Image / Tag
python:3.8.5-windowsservercore-ltsc2016
Content Digest
sha256:b45587db1d7bd3f3bd9df1063c3e538c60f1ded9fee943fe24722b7a97f8f3dc
Details
Created

2020-09-08 19:43:36 UTC

Size

5.41 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

6e0bb0a2c2533361d7f297ed547237caf1b7507f197835974c0dd7eba998c53c

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.2.3

PYTHON_RELEASE

3.8.5

PYTHON_VERSION

3.8.5


Layers

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

[#001] sha256:bc202b498d589027cc702b23cf959b8842907508b3465b9d6ff739c9668e5134 - 28.72% (1.55 GB)

[#002] sha256:8f6f82df7cca9113965bd35d2921a651250266aa7a3a9df6a0a42e8c005f1333 - 0.0% (1.13 KB)

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

[#004] sha256:748e02a7b127f58784c54f322d8dc67af0f91bc24cd338a23a53b14422d5d0cb - 0.0% (1.1 KB)

[#005] sha256:66a3f62f40c259d5ff8e8451c46b65829a0f5b5e3a913a18fe8a96a8aa6d3241 - 1.0% (55.2 MB)

[#006] sha256:e2a356c0ef5cff755b2126bce586bef9b4108859432657d00b7396151e22f58a - 0.0% (1.1 KB)

[#007] sha256:e2fcddb2e03bf31e2b734743cd75a91357ae0edfd709fbfcb4b9d0431f59c66d - 0.0% (1.11 KB)

[#008] sha256:9c00dba1504124d6dd0793c8393017e4b3c55bf5255f74b3f601369d383e473b - 0.0% (1.12 KB)

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

[#010] sha256:74ff3d7bc46fe04c2d82c767f2915613b09b2583c0b5684b98a987d57001bdf4 - 0.0% (1.1 KB)


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

Apply image 1607-RTM-amd64

2020-09-01 19:14:00 UTC

Install update ltsc2016-amd64

2020-09-08 19:31:34 UTC

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

2020-09-08 19:39:28 UTC

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

2020-09-08 19:39:28 UTC

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

2020-09-08 19:41: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-09-08 19:41:48 UTC

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

2020-09-08 19:41:49 UTC

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

2020-09-08 19:41:51 UTC

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

2020-09-08 19:43:34 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-09-08 19:43:36 UTC

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