Namespace
library
Image / Tag
python:3.7.6-windowsservercore-1809
Content Digest
sha256:a68b53f01544f82868bc42e37f1939714b5c5d95114b4ea67da2e572a5cc6a60
Details
Created

2020-02-20 04:43:56 UTC

Size

2.13 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

3.7.6

PYTHON_VERSION

3.7.6


Layers

[#000] sha256:65014b3c312172f10bd6701a063f9b5aaf9a916c2d2cb843d406a6f77ded3f8d - 67.11% (1.43 GB)

[#001] sha256:b5405b7580792436b60c664b5fa766ea57f5a60c1d9a8c522cf53e99e4813355 - 30.43% (664 MB)

[#002] sha256:2061e035d6ba931d9f00238104b970d3410f4ef0d9603b4f074c7052858e01e3 - 0.0% (1.16 KB)

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

[#004] sha256:33da00a2f1b73708765ec35918bb5c162896bb8ab6cfa012737035c4b6c7e05d - 0.0% (1.18 KB)

[#005] sha256:d27bd2fead578c75b7aa82d867ddf04e567adeb19cde83c0e1cb18defae20676 - 2.22% (48.5 MB)

[#006] sha256:82809235bc409996a9a4900e76ed2a61ab142cca0b6a4f4d15e85a1d7331a750 - 0.0% (1.15 KB)

[#007] sha256:5df933b5f3036a6c06c684a1143dc0d7ff4faea98549541365b89fefca664aea - 0.0% (1.18 KB)

[#008] sha256:5a23eba8c66ed0d2cdef3f566fdad2798f9ba96e0c8729d3541e6294de877def - 0.0% (1.16 KB)

[#009] sha256:4a66b51ec5a1582d59221e04a1c5fde4af43701f9e72c9bffef1d63d6703542f - 0.23% (5.07 MB)

[#010] sha256:259478f770044b042cdddb70560e757fc49e777900292ba76687a94dea723b17 - 0.0% (1.13 KB)


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

Apply image 1809-RTM-amd64

2020-02-17 06:57:13 UTC

Install update 1809-amd64

2020-02-20 01:13:40 UTC

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

2020-02-20 04:40:09 UTC

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

2020-02-20 04:40:11 UTC

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

2020-02-20 04:42:35 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-02-20 04:42:37 UTC

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

2020-02-20 04:42:40 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-02-20 04:42:41 UTC

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

2020-02-20 04:43:55 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-02-20 04:43:56 UTC

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