Namespace
library
Image / Tag
hylang:0.29.0-pypy3.9-bullseye
Content Digest
sha256:1a2eb018b5ffa28c60cea10cd2650e13b45391c16282929db817e8978d702661
Details
Created

2024-07-10 23:46:02 UTC

Size

64.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.16

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:1fff23531e74037071ba9be4ee63db5ccfd9c3823dceddfee08bed3fdeb6dea1 - 47.96% (30.9 MB)

[#001] sha256:2216c637717c33708ff27bd00b363351a595249f947fb796a5316b047d0aabb9 - 1.6% (1.03 MB)

[#002] sha256:2d9fbed56cf7abb4e8d27d69df14f200cad6f3ef2b0c5f4fcf66f58743bf75df - 40.26% (25.9 MB)

[#003] sha256:8545e55609b79ded5683c35b7102e911a105dc40dca041f609f56425626f2759 - 4.31% (2.78 MB)

[#004] sha256:1ffe665cfb518fd02e8cc71397b6444069847283ea14f6efc68c28d89bef1f08 - 5.88% (3.79 MB)


History
2024-04-24 04:28:19 UTC

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

2024-04-24 04:28:19 UTC

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

2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

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

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.16

2024-04-24 04:28:19 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.9-v7.3.16-linux64.tar.bz2'; sha256='16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2'; sha256='de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2'; sha256='583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-s390x.tar.bz2'; sha256='7a56ebb27dba3110dc1ff52d8e0449cdb37fe5c2275f7faf11432e4e164833ba'; ;; *) 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.9; 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

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

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

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

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-07-10 23:46:02 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.16

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:82aabceedc2fbf89030cbb4ff98215b70d9ae35c780ade6c784d9b447b1109ed - 44.76% (30 MB)

[#001] sha256:5f773371a7b7d83523f2a8b569a4d152d4e5bb6dadc16aa20dab9690b95a503a - 1.52% (1.02 MB)

[#002] sha256:b2f470719d3092f67dcc7939512517366ec2b256c5789e01b6df00414585b786 - 43.91% (29.4 MB)

[#003] sha256:db56bea6dcb71423ad826689177ae1d3227b238c86bc64ba8ca5da6f5daf10d1 - 4.15% (2.78 MB)

[#004] sha256:b940620f16301435435f19d0c8166fbe1da29afe60e4b445766d2fa6cfe8b026 - 5.66% (3.79 MB)


History
2024-04-24 04:28:19 UTC

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

2024-04-24 04:28:19 UTC

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

2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

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

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.16

2024-04-24 04:28:19 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.9-v7.3.16-linux64.tar.bz2'; sha256='16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2'; sha256='de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2'; sha256='583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-s390x.tar.bz2'; sha256='7a56ebb27dba3110dc1ff52d8e0449cdb37fe5c2275f7faf11432e4e164833ba'; ;; *) 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.9; 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

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

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

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

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-07-10 23:46:02 UTC

Size

64 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.16

PYTHON_GET_PIP_SHA256

95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

PYTHON_GET_PIP_URL

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


Layers

[#000] sha256:3f559f8680cb633039b8f423453ed0a0797f65d0a9ac051861edb9ba7ac94711 - 44.79% (28.7 MB)

[#001] sha256:9a2e6720886d0e2a91195903b8aa743b19bf0b874ab5df1cb8c92d2ca1141e2d - 1.57% (1.01 MB)

[#002] sha256:fdbec686cd0df7d8d70803345c758e112bd803e8fb11539b8a9f79664b4c0b4d - 43.39% (27.8 MB)

[#003] sha256:5b0711b1e3ef24ec43a465c63b4f1d29db06b0e07435b4f6059da000515c8c79 - 4.34% (2.78 MB)

[#004] sha256:d46cd6e4b33e40d8b1136dd53a94dfc62a2046653563f8aa915b5966e96c3e70 - 5.91% (3.79 MB)


History
2024-04-24 04:28:19 UTC

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

2024-04-24 04:28:19 UTC

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

2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

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

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.16

2024-04-24 04:28:19 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.9-v7.3.16-linux64.tar.bz2'; sha256='16f9c5b808c848516e742986e826b833cdbeda09ad8764e8704595adbe791b23'; ;; 'arm64') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-aarch64.tar.bz2'; sha256='de3f2ed3581b30555ac0dd3e4df78a262ec736a36fb2e8f28259f8539b278ef4'; ;; 'i386') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-linux32.tar.bz2'; sha256='583b6d6dd4e8c07cbc04da04a7ec2bdfa6674825289c2378c5e018d5abe779ea'; ;; 's390x') url='https://downloads.python.org/pypy/pypy3.9-v7.3.16-s390x.tar.bz2'; sha256='7a56ebb27dba3110dc1ff52d8e0449cdb37fe5c2275f7faf11432e4e164833ba'; ;; *) 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.9; 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

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

2024-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-04-24 04:28:19 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-04-24 04:28:19 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.29.0

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.6.0

2024-07-10 23:46:02 UTC (buildkit.dockerfile.v0)

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

2024-07-10 23:46:02 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