Namespace
library
Image / Tag
python:3.9.0a6-windowsservercore-1809
Content Digest
sha256:a9be5d73f3cc3b96961e3f58282946ffc8b8559be61953cfe9186bddb96991be
Details
Created

2020-05-13 15:02:54 UTC

Size

1.65 GB

Content Digest
Environment
PYTHON_GET_PIP_SHA256

ce486cddac44e99496a702aa5c06c5028414ef48fdfd5242cd2fe559b13d4348

PYTHON_GET_PIP_URL

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

PYTHON_PIP_VERSION

20.1

PYTHON_RELEASE

3.9.0

PYTHON_VERSION

3.9.0a6


Layers

[#000] sha256:4612f6d0b889cad0ed0292fae3a0b0c8a9e49aff6dea8eb049b2386d9b07986f - 96.95% (1.6 GB)

[#001] sha256:77613e754ba9d62c0acd4ef271c4ee7d3af091b8c8b310afa404560a9d281f82 - 0.0% (1.12 KB)

[#002] sha256:1ea6cbe7860baa2c601d71f7262e44a8caec3d206cb8352b971814ecb55cf978 - 0.0% (1.05 KB)

[#003] sha256:bdcf3208fe7f0a55d8a5b0ac33e84c5f68e8ab4b4aa07c63bfe0a38a3015563f - 0.0% (1.04 KB)

[#004] sha256:741786365121cc5cd6fb49a6fb0b088f56eabe450ad53ea489d39208fa901e38 - 2.74% (46.3 MB)

[#005] sha256:20557c07c58928ebe9fa3a66d02e2e0f917a73f018472f54b890c92b7fe9546a - 0.0% (1.07 KB)

[#006] sha256:959a2a378cf5fca48f573087587e2ba474913fcd25963d8df3f6dc7f56e8e419 - 0.0% (1.07 KB)

[#007] sha256:40606c7bddc86c51113f584122231046f843a03afedf32a8c6f49afe4d5454f9 - 0.0% (1.05 KB)

[#008] sha256:0885401656328bcf81f36696a4bfca5f91d14d5b7a7ccadd13d1db54eacd0e30 - 0.31% (5.26 MB)

[#009] sha256:42bfa6608292101fd12dea548fe6be5cae683a483c25e0dc7970464c3071ab95 - 0.0% (1.11 KB)


History
2020-05-07 05:09:25 UTC

Apply image 1809-amd64

2020-05-13 12:41:46 UTC

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

2020-05-13 15:00:37 UTC

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

2020-05-13 15:00:38 UTC

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

2020-05-13 15:02:06 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-05-13 15:02:07 UTC

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

2020-05-13 15:02:08 UTC

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

2020-05-13 15:02:10 UTC

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

2020-05-13 15:02:53 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-05-13 15:02:54 UTC

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