Namespace
library
Image / Tag
hylang:0.28-pypy3.9-bullseye
Content Digest
sha256:6604c9d7a8e8e791fe85790b5a68d54cb2e12d9a0f31ed2938876a0cf5cf0402
Details
Created

2024-01-05 23:20:01 UTC

Size

64.2 MB

Content Digest
Environment
HYRULE_VERSION

0.5.0

HY_VERSION

0.28.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:de7432ff839295b583814dfc21a6afb18eb4e45d8144c26b1402229e5bc8105f - 48.13% (30.9 MB)

[#001] sha256:1291a2100e9d26461578d5bc500335c7c8d3eee9f304f338fd03af9acac341f1 - 1.3% (855 KB)

[#002] sha256:155bed1e056750e2c46908e1ea2f7d952299d23dacf23fd9d6187ae20b68dca9 - 40.39% (25.9 MB)

[#003] sha256:c87d0f12922eff3326d729a795aa520a916a8a59bced086bd950228885e91115 - 4.32% (2.78 MB)

[#004] sha256:588625cf3dffb4fb9679f3a53ad97a8f9a71de049f09b7f25175a7ecefe153d7 - 5.86% (3.76 MB)


History
2024-01-05 23:20:01 UTC

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

2024-01-05 23:20:01 UTC

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

2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.16

2024-01-05 23:20: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.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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.28.0

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.5.0

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-01-05 23:20:01 UTC

Size

66.7 MB

Content Digest
Environment
HYRULE_VERSION

0.5.0

HY_VERSION

0.28.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:728328ac3bde9b85225b1f0d60f5c149f5635a191f5d8eaeeb00e095d36ef9fd - 44.91% (30 MB)

[#001] sha256:e58d5bd97c16fd262dde6efa6e7db4bccfc8e68d97e273683d9bb5385f0c0e20 - 1.23% (843 KB)

[#002] sha256:cdde105c1c2898dc7ae1edea3174ea80b22762cfc6d07dc2cb4bc2d23f4ef024 - 44.05% (29.4 MB)

[#003] sha256:9d7aafbc3fa25715fc436179d2e0d0c4483442f4e91e9dd4431592047ebb978f - 4.16% (2.78 MB)

[#004] sha256:874340038003ed2b8fd1daca921b1f0c8c61ad4beffcde8c8a284894355018b4 - 5.64% (3.76 MB)


History
2024-01-05 23:20:01 UTC

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

2024-01-05 23:20:01 UTC

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

2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.16

2024-01-05 23:20: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.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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.28.0

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.5.0

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

CMD ["hy"]

Details
Created

2024-01-05 23:20:01 UTC

Size

63.8 MB

Content Digest
Environment
HYRULE_VERSION

0.5.0

HY_VERSION

0.28.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:3a0037c67e2f4632684ea787f751ddb0b6af2b86113ab3b6859744b6eaf77e2f - 44.95% (28.7 MB)

[#001] sha256:f7df0bac2bd985cd4cb39b2e9f2ddabb1dd6a3ddf35cf9b60a03597e02f19dd9 - 1.27% (831 KB)

[#002] sha256:6552eac51d3252db80cf02a7703baf68df8c081a5f96f73035baded99611dcda - 43.53% (27.8 MB)

[#003] sha256:7e420d44957069ba3304a1113bbebd9bd2c70ca7c1b45949bce20eccec382777 - 4.35% (2.78 MB)

[#004] sha256:e3cb579c47e7b72d3b153debfbe652f4358dc6cab9807fe4631cf19ffafdf8be - 5.9% (3.76 MB)


History
2024-01-05 23:20:01 UTC

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

2024-01-05 23:20:01 UTC

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

2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV LANG=C.UTF-8

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV PYPY_VERSION=7.3.16

2024-01-05 23:20: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.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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV PYTHON_GET_PIP_SHA256=95c5ee602b2f3cc50ae053d716c3c89bea62c58568f64d7d25924d399b2d5218

2024-01-05 23:20: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-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

CMD ["pypy3"]

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV HY_VERSION=0.28.0

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

ENV HYRULE_VERSION=0.5.0

2024-01-05 23:20:01 UTC (buildkit.dockerfile.v0)

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

2024-01-05 23:20:01 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