Namespace
library
Image / Tag
python:2.7-windowsservercore
Content Digest
sha256:2bedbd91529fa5e98354dd53d8f5bec79aba9646e6b25ff25e9b4639a7d5d2f6
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"]

Details
Created

2020-04-21 00:23:44 UTC

Size

2.16 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:65014b3c312172f10bd6701a063f9b5aaf9a916c2d2cb843d406a6f77ded3f8d - 66.13% (1.43 GB)

[#001] sha256:eac6fba788c9781d6f989eb0932cb33bf72c2cce4eb234cc6decdcab89e183bc - 31.71% (702 MB)

[#002] sha256:edc29de224149bd438350512f7a31a67edbd3fcafce757aa60620dc459c184ad - 0.0% (1.07 KB)

[#003] sha256:aa75be16f1858cd341c379ba7e54d9b24eeeeb6741b6cfc38f622b9403435632 - 0.0% (1.05 KB)

[#004] sha256:d9ba24c3e36acdedc41dc020359701b5ef51e0585ba8e4419eb399b203c6b5d5 - 0.0% (1.09 KB)

[#005] sha256:6332bab4ee60328c9fcc309d21340cd1c6c2d757f323b8aadcab0302818e4447 - 1.69% (37.3 MB)

[#006] sha256:36595d215ac4669d877eb8c79f9a29e20d1aec124cb3636a783126d93fe32356 - 0.0% (1.05 KB)

[#007] sha256:83bb6d81892be22e61a8392b2994440f93ce3a49c2f64b10d107565a36165797 - 0.0% (1.05 KB)

[#008] sha256:6da01429e7fbe7ed7ab9ba0105b09fd0f44f68dbc04216eff7da46dafa2e49f7 - 0.0% (1.06 KB)

[#009] sha256:a5e1ba8bba570c9590a601f59f6ab64c809f5dcce8d89d1473e15961d97698f1 - 0.22% (4.79 MB)

[#010] sha256:e5ca08f07b32309701f9c462fd3cbee5d02ab403a0d4b412fc3c0561eb34a8ed - 0.26% (5.72 MB)

[#011] sha256:ae1f16c2d88a1a36411583696aea92b174c4131f8b866c61bb9bb1f96ea19774 - 0.0% (1.1 KB)


History
2018-09-15 09:10:26 UTC

Apply image 1809-RTM-amd64

2020-04-13 03:38:38 UTC

Install update 1809-amd64

2020-04-14 21:32:35 UTC

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

2020-04-21 00:21:09 UTC

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

2020-04-21 00:21:09 UTC

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

2020-04-21 00:22:21 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:22:22 UTC

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

2020-04-21 00:22:24 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:22:25 UTC

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

2020-04-21 00:23:06 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:23:43 UTC

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

2020-04-21 00:23:44 UTC

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