Namespace
library
Image / Tag
hylang:0.29.0-pypy3.10
Content Digest
sha256:67f4b54ecda6678dcdb16365698719f4668269ff55d8f369a5cb39bcd0d053fb
Details
Created

2024-09-11 00:07:32 UTC

Size

67 MB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.0

LANG

C.UTF-8

PATH

/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYPY_VERSION

7.3.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:c304282df09b425e8240f53c55110ac282ba801da157a805e4fdbdf8c832b376 - 42.92% (28.7 MB)

[#001] sha256:1074bd9f27455227cf67fd6f241ebaee8db0785c99f2bf79e2db4651ba5bcbaf - 4.99% (3.34 MB)

[#002] sha256:0b6f6b56c67e6d3554e6393d2189187804ef4420b5f89c7a5251965244149e1a - 38.37% (25.7 MB)

[#003] sha256:543230f8b9baded6705cc6eb2ff88440829ff693bea0f778afe2dfbe288075aa - 4.7% (3.15 MB)

[#004] sha256:e351ab8306e723c2e96f32dbb590cf03b88406cbd66c8b5ae31ce311ad6b8790 - 9.02% (6.04 MB)


History
2024-08-28 10:12:01 UTC

/bin/sh -c #(nop) ADD file:1d96491aed0d3091aadb984e1dfe642343013348f4a1807a69e132efaed68030 in /

2024-08-28 10:12:01 UTC

/bin/sh -c #(nop) CMD ["bash"]

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates; rm -rf /var/lib/apt/lists/* # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.17

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux64.tar.bz2'; sha256='fdcdb9b24f1a7726003586503fdeb264fd68fc37fbfcea022dcfe825a7fee18b'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-aarch64.tar.bz2'; sha256='53b6e5907df869c49e4eae7aca09fba16d150741097efb245892c1477d2395f2'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux32.tar.bz2'; sha256='e534110e1047da37c1d586c392f74de3424f871d906a2083de6d41f2a8cc9164'; ;; *) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding PyPy $PYPY_VERSION binary release"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends bzip2 wget libexpat1 libncurses5 libncursesw6 libsqlite3-0 ; wget -O pypy.tar.bz2 "$url" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum --check --strict -; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib* -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; ln -sv '/opt/pypy/bin/pypy3' /usr/local/bin/; pypy3 --version; cd /opt/pypy/lib/pypy3.10; if [ -f _gdbm_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libgdbm-dev; pypy3 _gdbm_build.py; fi; if [ -f _ssl_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libssl-dev; pypy3 _ssl_build.py; fi; if [ -f _lzma_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev liblzma-dev; pypy3 _lzma_build.py; fi; if [ -f _sqlite3_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libsqlite3-dev; pypy3 _sqlite3_build.py; fi; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; find /opt/pypy -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pypy3 --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends wget; rm -rf /var/lib/apt/lists/*; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; pipVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._PIP_VERSION)')"; setuptoolsVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)')"; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip == $pipVersion" "setuptools == $setuptoolsVersion" ; apt-get purge -y --auto-remove wget; pip --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-09-11 00:07:32 UTC

Size

69.5 MB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.0

LANG

C.UTF-8

PATH

/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYPY_VERSION

7.3.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:a2318d6c47ec9cac5acc500c47c79602bcf953cec711a18bc898911a0984365b - 39.98% (27.8 MB)

[#001] sha256:5b5629df2df3739958df630c743a14b6f1558488fba767451d8ad3b381d51cfb - 4.8% (3.34 MB)

[#002] sha256:a5b8aba5bf71677484e0cf0d22eca5df59491162ee212e3d41b134e2181ae922 - 41.99% (29.2 MB)

[#003] sha256:82df1c8312b7662b5d5c16c92c5b8eff08ace963bf8a510dae3755b1f6b2dc31 - 4.53% (3.15 MB)

[#004] sha256:566e8dcaa567fe67718c84dbd359e73a784e99208aa425b2060f7bf6a47e540a - 8.7% (6.04 MB)


History
2024-08-28 10:12:01 UTC

/bin/sh -c #(nop) ADD file:d13afefcc2b0b02b598a3ac2598fe2187db41de1e17820e5b600a955b1429d59 in /

2024-08-28 10:12:01 UTC

/bin/sh -c #(nop) CMD ["bash"]

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates; rm -rf /var/lib/apt/lists/* # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.17

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux64.tar.bz2'; sha256='fdcdb9b24f1a7726003586503fdeb264fd68fc37fbfcea022dcfe825a7fee18b'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-aarch64.tar.bz2'; sha256='53b6e5907df869c49e4eae7aca09fba16d150741097efb245892c1477d2395f2'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux32.tar.bz2'; sha256='e534110e1047da37c1d586c392f74de3424f871d906a2083de6d41f2a8cc9164'; ;; *) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding PyPy $PYPY_VERSION binary release"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends bzip2 wget libexpat1 libncurses5 libncursesw6 libsqlite3-0 ; wget -O pypy.tar.bz2 "$url" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum --check --strict -; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib* -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; ln -sv '/opt/pypy/bin/pypy3' /usr/local/bin/; pypy3 --version; cd /opt/pypy/lib/pypy3.10; if [ -f _gdbm_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libgdbm-dev; pypy3 _gdbm_build.py; fi; if [ -f _ssl_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libssl-dev; pypy3 _ssl_build.py; fi; if [ -f _lzma_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev liblzma-dev; pypy3 _lzma_build.py; fi; if [ -f _sqlite3_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libsqlite3-dev; pypy3 _sqlite3_build.py; fi; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; find /opt/pypy -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pypy3 --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends wget; rm -rf /var/lib/apt/lists/*; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; pipVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._PIP_VERSION)')"; setuptoolsVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)')"; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip == $pipVersion" "setuptools == $setuptoolsVersion" ; apt-get purge -y --auto-remove wget; pip --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-09-11 20:04:20 UTC

Size

1.65 GB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.0

PYPY_VERSION

7.3.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:803f4a9590cb9c635813cbd0ee89190f92d5fe4c7589711cf468879e42ce02ba - 96.99% (1.6 GB)

[#001] sha256:43f50f0a6841306396beedd592c8c805f7bd62c11fb8f64b1d26c65abc72f7a6 - 0.0% (1.26 KB)

[#002] sha256:dd5f6633fe81d423773822716e6ea3d812d325f81038b9324b70939a94c5ea33 - 0.02% (325 KB)

[#003] sha256:ab4079cda8af652a86f6b8d6ebb4077cf61e6b9568af3aeea8567039714e9f5a - 0.87% (14.8 MB)

[#004] sha256:6ac8c68b232cfee63cb42b709a1ad052b52eeaba022e1611b842c40f4583a12f - 0.0% (1.26 KB)

[#005] sha256:00f425305633bb6742974da66a8810042de75a72562000926437bd87e4fcda8a - 1.49% (25.2 MB)

[#006] sha256:513661c61e6e23f066ee7653148cae24ed1853a12ab13f8ea282fff1e59539f7 - 0.0% (1.27 KB)

[#007] sha256:a43efd8ea8e68ca6760bc2ed90a158806cf507171076867979c4279837579a42 - 0.0% (1.26 KB)

[#008] sha256:60051a8e84cc9aaa70d6e144bdb56ab3e64655ef6f1a3b63051a9a5efa87cd6c - 0.22% (3.72 MB)

[#009] sha256:20dc20928c89ccc11f0e9bb7c1e1d769fa4c05807222945c3636c8b189927c4d - 0.0% (1.26 KB)

[#010] sha256:5c6dd2a224508972a08c2ff94595f94818ab54131b415a872d56b16264aee3c0 - 0.0% (1.38 KB)

[#011] sha256:0dae5c310c49db2bfb851883405c2e7558e93dbfc15d9eb385a142b65259c034 - 0.0% (1.32 KB)

[#012] sha256:4ceb75aa7dc236a75e3b34f3dc16381e5148d4f33f4c5e47abecf24d8fea054d - 0.41% (6.94 MB)

[#013] sha256:4869c388fcbbdd22b90559d01f9f31c32c5b622b736f1c0be2845e1f37920e39 - 0.0% (1.32 KB)


History
2024-09-06 01:15:31 UTC

Apply image 10.0.17763.6293

2024-09-11 00:05:10 UTC

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

2024-09-11 00:05:22 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('C:\pypy;C:\pypy\Scripts;{0}' -f $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); Write-Host 'Complete.'

2024-09-11 00:05:54 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'vc.exe'; $sha256 = 'da66717784c192f1004e856bbcf7b3e13b7bf3ea45932c48e4c9b9a50ca80965'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash vc.exe -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Installing ...'; Start-Process -NoNewWindow -Wait -FilePath .\vc.exe -ArgumentList @( '/install', '/quiet', '/norestart' ); Write-Host 'Removing ...'; Remove-Item vc.exe -Force; Write-Host 'Complete.'

2024-09-11 00:05:55 UTC

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

2024-09-11 00:07:45 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://downloads.python.org/pypy/pypy3.10-v7.3.17-win64.zip'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'pypy.zip'; $sha256 = 'cab794a03ddda26238c72942ea6f225612e0dc17c76cac6652da83a95024e6e8'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash pypy.zip -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive pypy.zip -DestinationPath C:\; Write-Host 'Removing ...'; Remove-Item pypy.zip -Force; Write-Host 'Renaming ...'; Rename-Item -Path C:\pypy3.10-v7.3.17-win64 -NewName C:\pypy; Write-Host 'Verifying install ("pypy --version") ...'; pypy --version; Write-Host 'Cleanup install ...'; Get-ChildItem -Path C:\pypy -Include @( 'test', 'tests' ) -Directory -Recurse | Remove-Item -Force -Recurse; Get-ChildItem -Path C:\pypy -Include @( '*.pyc', '*.pyo' ) -File -Recurse | Remove-Item -Force; Write-Host 'Complete.'

2024-09-11 00:07:47 UTC

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

2024-09-11 00:07:48 UTC

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

2024-09-11 00:08:24 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; }; $pipVersion = & pypy -c 'import ensurepip; print(ensurepip._PIP_VERSION)'; $setuptoolsVersion = & pypy -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)'; Write-Host ('Installing "pip == {0}", "setuptools == {1}" ...' -f $pipVersion, $setuptoolsVersion); pypy get-pip.py --disable-pip-version-check --no-cache-dir ('pip == {0}' -f $pipVersion) ('setuptools == {0}' -f $setuptoolsVersion) ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Cleanup install ...'; Get-ChildItem -Path C:\pypy -Include @( 'test', 'tests' ) -Directory -Recurse | Remove-Item -Force -Recurse; Get-ChildItem -Path C:\pypy -Include @( '*.pyc', '*.pyo' ) -File -Recurse | Remove-Item -Force; Write-Host 'Complete.'

2024-09-11 00:08:24 UTC

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

2024-09-11 20:03:10 UTC

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

2024-09-11 20:03:12 UTC

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

2024-09-11 20:04:19 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; pip install --no-cache-dir ('hy == {0}' -f $env:HY_VERSION) ('hyrule == {0}' -f $env:HYRULE_VERSION)

2024-09-11 20:04:20 UTC

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

Details
Created

2024-09-11 19:06:55 UTC

Size

1.41 GB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.0

PYPY_VERSION

7.3.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:2534953f34d35976fc44cd67bfdd39fdcd9e2eaae57ada0be53d5fb936cd3a0b - 96.47% (1.36 GB)

[#001] sha256:fb25f82b1aa60155539545208c6bf3749c60e56256da2d899a87306427b19f43 - 0.0% (1.26 KB)

[#002] sha256:c1df4875969466c9d7ab67f4f69669dbd2bcf24f66663bbed547da732093c36c - 0.02% (350 KB)

[#003] sha256:f2410858e508045647c0fbce7e78143e1d73b8f6c2a1d8eef421278aca7a41b5 - 1.02% (14.8 MB)

[#004] sha256:ac7c65175dd66e6a6c2da2dda1568b73ed75a5daccffffdddf7bb9ea8595531a - 0.0% (1.26 KB)

[#005] sha256:61833721382abb520125871f254f11e66f279215060c47bdcfda9bcf6e68be10 - 1.74% (25.2 MB)

[#006] sha256:3006e397620a955348cd5cffb4214d2c69eeebe9f8ec0c0640a44a7528f5aeda - 0.0% (1.26 KB)

[#007] sha256:ad67fe9bf2f2a1f212f79ef717ff66624f2d05b578624d21fdffab57546a3b29 - 0.0% (1.27 KB)

[#008] sha256:5d3caa8d494919928fed7dd18e8c68cdf3d064e1b6d72b26756eb970cb4bf84e - 0.26% (3.73 MB)

[#009] sha256:ecba01d7fbeb7115adff01659a92006a6af3f940fad78bc3c83b21f7efcd2470 - 0.0% (1.26 KB)

[#010] sha256:398c1a4c48db5f651a95487f3cbff57e5b074ed27910300d0e5569651d7c7741 - 0.0% (1.26 KB)

[#011] sha256:a701c621c179cf549baaef32fc33c8cadd29d9c9fa26ddc63d895c71d14d5766 - 0.0% (1.26 KB)

[#012] sha256:072db4f5fb0ff248d6ffe61d2965ca95ef538b7b74f28e26c689a7383d3d0281 - 0.48% (6.94 MB)

[#013] sha256:5ad48af5ac2c988afe972b7c3c871f7b5e3eaac73f42c9d847753f8ad77595d8 - 0.0% (1.26 KB)


History
2024-09-06 00:01:38 UTC

Apply image 10.0.20348.2700

2024-09-11 00:01:44 UTC

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

2024-09-11 00:01:51 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $newPath = ('C:\pypy;C:\pypy\Scripts;{0}' -f $env:PATH); Write-Host ('Updating PATH: {0}' -f $newPath); [Environment]::SetEnvironmentVariable('PATH', $newPath, [EnvironmentVariableTarget]::Machine); Write-Host 'Complete.'

2024-09-11 00:02:33 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://download.microsoft.com/download/6/A/A/6AA4EDFF-645B-48C5-81CC-ED5963AEAD48/vc_redist.x64.exe'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'vc.exe'; $sha256 = 'da66717784c192f1004e856bbcf7b3e13b7bf3ea45932c48e4c9b9a50ca80965'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash vc.exe -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Installing ...'; Start-Process -NoNewWindow -Wait -FilePath .\vc.exe -ArgumentList @( '/install', '/quiet', '/norestart' ); Write-Host 'Removing ...'; Remove-Item vc.exe -Force; Write-Host 'Complete.'

2024-09-11 00:02:35 UTC

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

2024-09-11 00:03:41 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; $url = 'https://downloads.python.org/pypy/pypy3.10-v7.3.17-win64.zip'; Write-Host ('Downloading {0} ...' -f $url); Invoke-WebRequest -Uri $url -OutFile 'pypy.zip'; $sha256 = 'cab794a03ddda26238c72942ea6f225612e0dc17c76cac6652da83a95024e6e8'; Write-Host ('Verifying sha256 ({0}) ...' -f $sha256); if ((Get-FileHash pypy.zip -Algorithm sha256).Hash -ne $sha256) { Write-Host 'FAILED!'; exit 1; }; Write-Host 'Expanding ...'; Expand-Archive pypy.zip -DestinationPath C:\; Write-Host 'Removing ...'; Remove-Item pypy.zip -Force; Write-Host 'Renaming ...'; Rename-Item -Path C:\pypy3.10-v7.3.17-win64 -NewName C:\pypy; Write-Host 'Verifying install ("pypy --version") ...'; pypy --version; Write-Host 'Cleanup install ...'; Get-ChildItem -Path C:\pypy -Include @( 'test', 'tests' ) -Directory -Recurse | Remove-Item -Force -Recurse; Get-ChildItem -Path C:\pypy -Include @( '*.pyc', '*.pyo' ) -File -Recurse | Remove-Item -Force; Write-Host 'Complete.'

2024-09-11 00:03:44 UTC

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

2024-09-11 00:03:50 UTC

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

2024-09-11 00:04:14 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; }; $pipVersion = & pypy -c 'import ensurepip; print(ensurepip._PIP_VERSION)'; $setuptoolsVersion = & pypy -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)'; Write-Host ('Installing "pip == {0}", "setuptools == {1}" ...' -f $pipVersion, $setuptoolsVersion); pypy get-pip.py --disable-pip-version-check --no-cache-dir ('pip == {0}' -f $pipVersion) ('setuptools == {0}' -f $setuptoolsVersion) ; Remove-Item get-pip.py -Force; Write-Host 'Verifying pip install ...'; pip --version; Write-Host 'Cleanup install ...'; Get-ChildItem -Path C:\pypy -Include @( 'test', 'tests' ) -Directory -Recurse | Remove-Item -Force -Recurse; Get-ChildItem -Path C:\pypy -Include @( '*.pyc', '*.pyo' ) -File -Recurse | Remove-Item -Force; Write-Host 'Complete.'

2024-09-11 00:04:14 UTC

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

2024-09-11 19:05:54 UTC

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

2024-09-11 19:05:54 UTC

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

2024-09-11 19:06:55 UTC

powershell -Command $ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue'; pip install --no-cache-dir ('hy == {0}' -f $env:HY_VERSION) ('hyrule == {0}' -f $env:HYRULE_VERSION)

2024-09-11 19:06:55 UTC

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

Details
Created

2024-09-11 00:07:32 UTC

Size

67.8 MB

Content Digest
Environment
HYRULE_VERSION

0.6.0

HY_VERSION

0.29.0

LANG

C.UTF-8

PATH

/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

PYPY_VERSION

7.3.17

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:92c3b3500be621c72c7ac6432a9d8f731f145f4a1535361ffd3a304e55f7ccda - 41.03% (27.8 MB)

[#001] sha256:89ed8cf8b863a96ea1c670eb011e3e447b82f9a1b376a428f7e41ba6ce3522c9 - 4.68% (3.17 MB)

[#002] sha256:faf01acff4355e4960de113e4d9ad6c3917bb1ed1e75b38bab834fd05c705aad - 40.73% (27.6 MB)

[#003] sha256:d66cef4ac41dbbd476a6b560e941b7a1fd203ec00aad50735d9b1603af36d902 - 4.65% (3.15 MB)

[#004] sha256:0f675fd682ffca6771cd34549ffe48ee8a2432f7e876d803b599df670ed2a6d3 - 8.92% (6.04 MB)


History
2024-08-28 10:12:01 UTC

/bin/sh -c #(nop) ADD file:06a1877f1e100122a40ed52ce771bfa7e2ab3d28323780f58f1e5b57c1e576f9 in /

2024-08-28 10:12:01 UTC

/bin/sh -c #(nop) CMD ["bash"]

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates; rm -rf /var/lib/apt/lists/* # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PATH=/opt/pypy/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.17

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -eux; dpkgArch="$(dpkg --print-architecture)"; case "${dpkgArch##*-}" in 'amd64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux64.tar.bz2'; sha256='fdcdb9b24f1a7726003586503fdeb264fd68fc37fbfcea022dcfe825a7fee18b'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-aarch64.tar.bz2'; sha256='53b6e5907df869c49e4eae7aca09fba16d150741097efb245892c1477d2395f2'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.10-v7.3.17-linux32.tar.bz2'; sha256='e534110e1047da37c1d586c392f74de3424f871d906a2083de6d41f2a8cc9164'; ;; *) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding PyPy $PYPY_VERSION binary release"; exit 1 ;; esac; savedAptMark="$(apt-mark showmanual)"; apt-get update; apt-get install -y --no-install-recommends bzip2 wget libexpat1 libncurses5 libncursesw6 libsqlite3-0 ; wget -O pypy.tar.bz2 "$url" --progress=dot:giga; echo "$sha256 *pypy.tar.bz2" | sha256sum --check --strict -; mkdir /opt/pypy; tar -xjC /opt/pypy --strip-components=1 -f pypy.tar.bz2; find /opt/pypy/lib* -depth -type d -a \( -name test -o -name tests \) -exec rm -rf '{}' +; rm pypy.tar.bz2; ln -sv '/opt/pypy/bin/pypy3' /usr/local/bin/; pypy3 --version; cd /opt/pypy/lib/pypy3.10; if [ -f _gdbm_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libgdbm-dev; pypy3 _gdbm_build.py; fi; if [ -f _ssl_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libssl-dev; pypy3 _ssl_build.py; fi; if [ -f _lzma_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev liblzma-dev; pypy3 _lzma_build.py; fi; if [ -f _sqlite3_build.py ]; then apt-get install -y --no-install-recommends gcc libc6-dev libsqlite3-dev; pypy3 _sqlite3_build.py; fi; apt-mark auto '.*' > /dev/null; [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; find /opt/pypy -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); printf "*%s\n", so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual ; apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; rm -rf /var/lib/apt/lists/*; pypy3 --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' + # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/3843bff3a0a61da5b63ea0b7d34794c5c51a2f11/get-pip.py

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c set -ex; apt-get update; apt-get install -y --no-install-recommends wget; rm -rf /var/lib/apt/lists/*; wget -O get-pip.py "$PYTHON_GET_PIP_URL"; echo "$PYTHON_GET_PIP_SHA256 *get-pip.py" | sha256sum --check --strict -; pipVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._PIP_VERSION)')"; setuptoolsVersion="$(pypy3 -c 'import ensurepip; print(ensurepip._SETUPTOOLS_VERSION)')"; pypy3 get-pip.py --disable-pip-version-check --no-cache-dir "pip == $pipVersion" "setuptools == $setuptoolsVersion" ; apt-get purge -y --auto-remove wget; pip --version; find /opt/pypy -depth \( \( -type d -a \( -name test -o -name tests \) \) -o \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \) -exec rm -rf '{}' +; rm -f get-pip.py # buildkit

2024-08-28 10:12:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

RUN /bin/sh -c pip install --no-cache-dir "hy == $HY_VERSION" "hyrule == $HYRULE_VERSION" # buildkit

2024-09-11 00:07:32 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete