Namespace
library
Image / Tag
python:2.7.18-windowsservercore-ltsc2016
Content Digest
sha256:4203acd872324b563f5d573b19073624d0a61941c8010d2c6b12fdd807da52aa
Details
Created

2020-04-21 00:21:02 UTC

Size

5.39 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

421ac1d44c0cf9730a088e337867d974b91bdce4ea2636099275071878cc189e

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.0.2

PYTHON_RELEASE

2.7.18

PYTHON_VERSION

2.7.18


Layers

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

[#001] sha256:d0099407ec8ccaf0472e55152e38b262bdf0b2cf8dfd2e8afcc89d728ba3f5a0 - 28.64% (1.54 GB)

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

[#003] sha256:5cbb61c764d01530e03d16046f916b05412dcf5d6305ad95b41cc17c2839ea01 - 0.0% (1.13 KB)

[#004] sha256:3100c74cc7d85f1afbffb251b6bc5cea03ccdd12606abeec7f4a6098a643340a - 0.0% (1.14 KB)

[#005] sha256:59cfb5bffe3e368c556aa72d0fe7cfd120a53896d16c8f3a1c02cd33316bb248 - 0.69% (37.9 MB)

[#006] sha256:74e63fb238cf04610c51dc234d45bd56a6e3e57845b9e47ddca72c1c66d0036f - 0.0% (1.16 KB)

[#007] sha256:bd07502fe3ce121a5a3357dc776b2cfc74cfd9c0b44419ddc644fab2c3c8dcb2 - 0.0% (1.14 KB)

[#008] sha256:1c078fb7aa97a827fc0833a29ddabd84e69de95872a2b584bc90aec1b7ecc8f6 - 0.0% (1.07 KB)

[#009] sha256:c496c9fa804836dc7acc5b7e98f543d7d3543570aefbb14324ac76ce8d598dde - 0.17% (9.59 MB)

[#010] sha256:5c0b39588bc6ebda27403e93d575b987f94cfc6700eb76fe0fd48f08dbf73c0d - 0.19% (10.5 MB)

[#011] sha256:35cd5eaf1063f432d69a9ed149f862fc8374dc08df47c164012cbb44814843b9 - 0.0% (1.05 KB)


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

Apply image 1607-RTM-amd64

2020-04-07 17:30:00 UTC

Install update ltsc2016-amd64

2020-04-14 21:35:40 UTC

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

2020-04-21 00:16:09 UTC

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

2020-04-21 00:16:10 UTC

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

2020-04-21 00:18:00 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = ('https://www.python.org/ftp/python/{0}/python-{1}.amd64.msi' -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.msi'; Write-Host 'Installing ...'; Start-Process msiexec -Wait -ArgumentList @( '/i', 'python.msi', '/quiet', '/qn', 'TARGETDIR=C:\Python', 'ALLUSERS=1', 'ADDLOCAL=DefaultFeature,Extensions,TclTk,Tools,PrependPath' ); $env:PATH = [Environment]::GetEnvironmentVariable('PATH', [EnvironmentVariableTarget]::Machine); Write-Host 'Verifying install ...'; Write-Host ' python --version'; python --version; Write-Host 'Removing ...'; Remove-Item python.msi -Force; Write-Host 'Complete.'

2020-04-21 00:18:02 UTC

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

2020-04-21 00:18:03 UTC

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

2020-04-21 00:18:04 UTC

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

2020-04-21 00:19:33 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-04-21 00:21:01 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; pip install --no-cache-dir virtualenv

2020-04-21 00:21:02 UTC

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