[ { "architecture": "arm64", "features": null, "variant": null, "digest": "sha256:d6cc0b14e9d2e2803ddcbb04b6c6be45754edc3dd9383e5aa4a210b5a9e327f8", "layers": [ { "digest": "sha256:d981f2c20c93e1c57a46cd87bc5b9a554be5323072a0d0ab4b354aabd237bbcf", "size": 30052747, "instruction": "ADD file:0fee550e337f1bd111a7ef785a9553674f25649f37deffa4aa8107ef6445d259 in / " }, { "size": 0, "instruction": " CMD [\"bash\"]" }, { "size": 0, "instruction": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" }, { "size": 0, "instruction": "ENV LANG=C.UTF-8" }, { "digest": "sha256:1cf577bcf494786a26d3775b1391886625ebb198fec15f51d00f89876e606094", "size": 1064318, "instruction": "RUN /bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tca-certificates \t\tnetbase \t\ttzdata \t; \trm -rf /var/lib/apt/lists/* # buildkit" }, { "size": 0, "instruction": "ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568" }, { "size": 0, "instruction": "ENV PYTHON_VERSION=3.9.17" }, { "digest": "sha256:98fb6131ecd092da9d7970473056cd09af2ef955fd71404209bf25ce0e0c2eda", "size": 12661102, "instruction": "RUN /bin/sh -c set -eux; \t\tsavedAptMark=\"$(apt-mark showmanual)\"; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tdpkg-dev \t\tgcc \t\tgnupg \t\tlibbluetooth-dev \t\tlibbz2-dev \t\tlibc6-dev \t\tlibdb-dev \t\tlibexpat1-dev \t\tlibffi-dev \t\tlibgdbm-dev \t\tliblzma-dev \t\tlibncursesw5-dev \t\tlibreadline-dev \t\tlibsqlite3-dev \t\tlibssl-dev \t\tmake \t\ttk-dev \t\tuuid-dev \t\twget \t\txz-utils \t\tzlib1g-dev \t; \t\twget -O python.tar.xz \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz\"; \twget -O python.tar.xz.asc \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc\"; \tGNUPGHOME=\"$(mktemp -d)\"; export GNUPGHOME; \tgpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \"$GPG_KEY\"; \tgpg --batch --verify python.tar.xz.asc python.tar.xz; \tgpgconf --kill all; \trm -rf \"$GNUPGHOME\" python.tar.xz.asc; \tmkdir -p /usr/src/python; \ttar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \trm python.tar.xz; \t\tcd /usr/src/python; \tgnuArch=\"$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)\"; \t./configure \t\t--build=\"$gnuArch\" \t\t--enable-loadable-sqlite-extensions \t\t--enable-optimizations \t\t--enable-option-checking=fatal \t\t--enable-shared \t\t--with-system-expat \t\t--without-ensurepip \t; \tnproc=\"$(nproc)\"; \tEXTRA_CFLAGS=\"$(dpkg-buildflags --get CFLAGS)\"; \tLDFLAGS=\"$(dpkg-buildflags --get LDFLAGS)\"; \tLDFLAGS=\"${LDFLAGS:--Wl},--strip-all\"; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:-}\" \t\t\"PROFILE_TASK=${PROFILE_TASK:-}\" \t; \trm python; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:--Wl},-rpath='\\$\\$ORIGIN/../lib'\" \t\t\"PROFILE_TASK=${PROFILE_TASK:-}\" \t\tpython \t; \tmake install; \t\tcd /; \trm -rf /usr/src/python; \t\tfind /usr/local -depth \t\t\\( \t\t\t\\( -type d -a \\( -name test -o -name tests -o -name idle_test \\) \\) \t\t\t-o \\( -type f -a \\( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \\) \\) \t\t\\) -exec rm -rf '{}' + \t; \t\tldconfig; \t\tapt-mark auto '.*' > /dev/null; \tapt-mark manual $savedAptMark; \tfind /usr/local -type f -executable -not \\( -name '*tkinter*' \\) -exec ldd '{}' ';' \t\t| awk '/=>/ { print $(NF-1) }' \t\t| sort -u \t\t| xargs -r dpkg-query --search \t\t| cut -d: -f1 \t\t| sort -u \t\t| xargs -r apt-mark manual \t; \tapt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \trm -rf /var/lib/apt/lists/*; \t\tpython3 --version # buildkit" }, { "digest": "sha256:502ac6e8dfd40f9b5b1531496682003972dcc315ccf5f133562a9f97e559fb08", "size": 244, "instruction": "RUN /bin/sh -c set -eux; \tfor src in idle3 pydoc3 python3 python3-config; do \t\tdst=\"$(echo \"$src\" | tr -d 3)\"; \t\t[ -s \"/usr/local/bin/$src\" ]; \t\t[ ! -e \"/usr/local/bin/$dst\" ]; \t\tln -svT \"$src\" \"/usr/local/bin/$dst\"; \tdone # buildkit" }, { "size": 0, "instruction": "ENV PYTHON_PIP_VERSION=23.0.1" }, { "size": 0, "instruction": "ENV PYTHON_SETUPTOOLS_VERSION=58.1.0" }, { "size": 0, "instruction": "ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py" }, { "size": 0, "instruction": "ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207" }, { "digest": "sha256:a3ac184d5734f598e5a1a43ff102fab0b7392c63d79691b0070a8c1e8b23ae40", "size": 3138393, "instruction": "RUN /bin/sh -c set -eux; \t\tsavedAptMark=\"$(apt-mark showmanual)\"; \tapt-get update; \tapt-get install -y --no-install-recommends wget; \t\twget -O get-pip.py \"$PYTHON_GET_PIP_URL\"; \techo \"$PYTHON_GET_PIP_SHA256 *get-pip.py\" | sha256sum -c -; \t\tapt-mark auto '.*' > /dev/null; \t[ -z \"$savedAptMark\" ] || apt-mark manual $savedAptMark > /dev/null; \tapt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \trm -rf /var/lib/apt/lists/*; \t\texport PYTHONDONTWRITEBYTECODE=1; \t\tpython get-pip.py \t\t--disable-pip-version-check \t\t--no-cache-dir \t\t--no-compile \t\t\"pip==$PYTHON_PIP_VERSION\" \t\t\"setuptools==$PYTHON_SETUPTOOLS_VERSION\" \t; \trm -f get-pip.py; \t\tpip --version # buildkit" }, { "size": 0, "instruction": "CMD [\"python3\"]" }, { "size": 0, "instruction": "LABEL version=20230605.01" }, { "size": 0, "instruction": "LABEL wget-at.version=1.21.3-at.20230605.01" }, { "digest": "sha256:21a91bebb3fc644795bf50b7be114c99d1d89c6330d027e8d105aabebc8db1a1", "size": 960954, "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit" }, { "digest": "sha256:8f1d7544fef3cca98f59bf7bc140510955dd8a8c58cdceecf3c53781636cd02f", "size": 927216, "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit" }, { "digest": "sha256:2d930ad1ac7b152cd44487ae9cab30bc3ae639f35908b773ac9d23c610e80dab", "size": 3180, "instruction": "RUN /bin/sh -c ldconfig # buildkit" }, { "size": 0, "instruction": "ENV LC_ALL=C" }, { "digest": "sha256:3568a236bd530941f64fafa855fbb4f8339f9b36226690ebc1b66c642ba4efd5", "size": 99338761, "instruction": "RUN /bin/sh -c DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get -qqy --no-install-recommends -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold -o Dpkg::Options::=--force-unsafe-io update && DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get -qqy --no-install-recommends -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold -o Dpkg::Options::=--force-unsafe-io install gzip rsync liblua5.1-0 libluajit-5.1-2 libidn11 lua-socket lua-filesystem lua-sec lua-zip libpsl5 git poppler-utils luarocks libidn2-0-dev gcc && pip install --no-cache-dir requests seesaw zstandard && sed -i 's/lib\\/x86_64-linux-gnu/lib\\/'`gcc -dumpmachine`'/' /usr/share/lua/*/luarocks/site_config.lua && luarocks install html-entities && luarocks install idn2 && chmod +x /usr/local/bin/wget-lua && rm -rf /var/lib/apt/lists/* # buildkit" }, { "digest": "sha256:81b22d40ec03c101e1d5cbd0fdabe43271a8101304d710af36063d8dcc69ff96", "size": 162, "instruction": "RUN /bin/sh -c echo \"#!/bin/bash\\n\\$@\" > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit" }, { "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1", "size": 32, "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua|dns|host|resolv\" # buildkit" }, { "digest": "sha256:94aa0e50a8e44bdf4ea64c55a447c9b526af6343888cdca9096c1680965ed758", "size": 93, "instruction": "WORKDIR /grab" }, { "size": 0, "instruction": "STOPSIGNAL SIGINT" }, { "size": 0, "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]" }, { "digest": "sha256:f85a1cc5b23835d0df07e2707630e76cae405a143a1b9ce00a01778210438668", "size": 515205, "instruction": "COPY . /grab # buildkit" }, { "digest": "sha256:562d32e11ddf9134cb152f93086115b95732a2468ebba6276f02eedb3d1039bf", "size": 137, "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit" }, { "digest": "sha256:71b0066672f810b7eaec07e0176a6aaadd791ed2d6b3218977588ab539e1c048", "size": 142, "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit" } ], "os": "linux", "os_features": null, "os_version": null, "size": 148662686, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.32819Z", "last_pushed": "2023-06-10T20:38:09.586834Z" }, { "architecture": "arm", "features": null, "variant": "v7", "digest": "sha256:e18649991af795de03ed01050e80aec52c5b63668896705cada2818aa774b588", "layers": [ { "digest": "sha256:a27027e97f260d9b7aac9bae941b44639374700dc4c32cc2e378b189a4ffda88", "size": 26564635, "instruction": "ADD file:dbb95e676c7a9806b1883ebcf4259345159caf22ff7194ba7556ea0b1f78099a in / " }, { "size": 0, "instruction": " CMD [\"bash\"]" }, { "size": 0, "instruction": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" }, { "size": 0, "instruction": "ENV LANG=C.UTF-8" }, { "digest": "sha256:9c18fa1eb965a9cd27f27d4f8153653a65b50942439f8c148cfebd8d30b2fd92", "size": 1041758, "instruction": "RUN /bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tca-certificates \t\tnetbase \t\ttzdata \t; \trm -rf /var/lib/apt/lists/* # buildkit" }, { "size": 0, "instruction": "ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568" }, { "size": 0, "instruction": "ENV PYTHON_VERSION=3.9.17" }, { "digest": "sha256:5af42339794eaf790a11d99a59acb770f0b587a24478a4c51a70801feefef865", "size": 11697555, "instruction": "RUN /bin/sh -c set -eux; \t\tsavedAptMark=\"$(apt-mark showmanual)\"; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tdpkg-dev \t\tgcc \t\tgnupg \t\tlibbluetooth-dev \t\tlibbz2-dev \t\tlibc6-dev \t\tlibdb-dev \t\tlibexpat1-dev \t\tlibffi-dev \t\tlibgdbm-dev \t\tliblzma-dev \t\tlibncursesw5-dev \t\tlibreadline-dev \t\tlibsqlite3-dev \t\tlibssl-dev \t\tmake \t\ttk-dev \t\tuuid-dev \t\twget \t\txz-utils \t\tzlib1g-dev \t; \t\twget -O python.tar.xz \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz\"; \twget -O python.tar.xz.asc \"https://www.python.org/ftp/python/${PYTHON_VERSION%%[a-z]*}/Python-$PYTHON_VERSION.tar.xz.asc\"; \tGNUPGHOME=\"$(mktemp -d)\"; export GNUPGHOME; \tgpg --batch --keyserver hkps://keys.openpgp.org --recv-keys \"$GPG_KEY\"; \tgpg --batch --verify python.tar.xz.asc python.tar.xz; \tgpgconf --kill all; \trm -rf \"$GNUPGHOME\" python.tar.xz.asc; \tmkdir -p /usr/src/python; \ttar --extract --directory /usr/src/python --strip-components=1 --file python.tar.xz; \trm python.tar.xz; \t\tcd /usr/src/python; \tgnuArch=\"$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)\"; \t./configure \t\t--build=\"$gnuArch\" \t\t--enable-loadable-sqlite-extensions \t\t--enable-optimizations \t\t--enable-option-checking=fatal \t\t--enable-shared \t\t--with-system-expat \t\t--without-ensurepip \t; \tnproc=\"$(nproc)\"; \tEXTRA_CFLAGS=\"$(dpkg-buildflags --get CFLAGS)\"; \tLDFLAGS=\"$(dpkg-buildflags --get LDFLAGS)\"; \tLDFLAGS=\"${LDFLAGS:--Wl},--strip-all\"; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:-}\" \t\t\"PROFILE_TASK=${PROFILE_TASK:-}\" \t; \trm python; \tmake -j \"$nproc\" \t\t\"EXTRA_CFLAGS=${EXTRA_CFLAGS:-}\" \t\t\"LDFLAGS=${LDFLAGS:--Wl},-rpath='\\$\\$ORIGIN/../lib'\" \t\t\"PROFILE_TASK=${PROFILE_TASK:-}\" \t\tpython \t; \tmake install; \t\tcd /; \trm -rf /usr/src/python; \t\tfind /usr/local -depth \t\t\\( \t\t\t\\( -type d -a \\( -name test -o -name tests -o -name idle_test \\) \\) \t\t\t-o \\( -type f -a \\( -name '*.pyc' -o -name '*.pyo' -o -name 'libpython*.a' \\) \\) \t\t\\) -exec rm -rf '{}' + \t; \t\tldconfig; \t\tapt-mark auto '.*' > /dev/null; \tapt-mark manual $savedAptMark; \tfind /usr/local -type f -executable -not \\( -name '*tkinter*' \\) -exec ldd '{}' ';' \t\t| awk '/=>/ { print $(NF-1) }' \t\t| sort -u \t\t| xargs -r dpkg-query --search \t\t| cut -d: -f1 \t\t| sort -u \t\t| xargs -r apt-mark manual \t; \tapt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \trm -rf /var/lib/apt/lists/*; \t\tpython3 --version # buildkit" }, { "digest": "sha256:fc4365b9f5a2db3862e4e5d40fe5d4a58bdf9226694781f95e81143790e00893", "size": 244, "instruction": "RUN /bin/sh -c set -eux; \tfor src in idle3 pydoc3 python3 python3-config; do \t\tdst=\"$(echo \"$src\" | tr -d 3)\"; \t\t[ -s \"/usr/local/bin/$src\" ]; \t\t[ ! -e \"/usr/local/bin/$dst\" ]; \t\tln -svT \"$src\" \"/usr/local/bin/$dst\"; \tdone # buildkit" }, { "size": 0, "instruction": "ENV PYTHON_PIP_VERSION=23.0.1" }, { "size": 0, "instruction": "ENV PYTHON_SETUPTOOLS_VERSION=58.1.0" }, { "size": 0, "instruction": "ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py" }, { "size": 0, "instruction": "ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207" }, { "digest": "sha256:b6c07b67ad18059646a61de61ad0c328feddfa52f3e651d1c452a8e773651235", "size": 3138083, "instruction": "RUN /bin/sh -c set -eux; \t\tsavedAptMark=\"$(apt-mark showmanual)\"; \tapt-get update; \tapt-get install -y --no-install-recommends wget; \t\twget -O get-pip.py \"$PYTHON_GET_PIP_URL\"; \techo \"$PYTHON_GET_PIP_SHA256 *get-pip.py\" | sha256sum -c -; \t\tapt-mark auto '.*' > /dev/null; \t[ -z \"$savedAptMark\" ] || apt-mark manual $savedAptMark > /dev/null; \tapt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false; \trm -rf /var/lib/apt/lists/*; \t\texport PYTHONDONTWRITEBYTECODE=1; \t\tpython get-pip.py \t\t--disable-pip-version-check \t\t--no-cache-dir \t\t--no-compile \t\t\"pip==$PYTHON_PIP_VERSION\" \t\t\"setuptools==$PYTHON_SETUPTOOLS_VERSION\" \t; \trm -f get-pip.py; \t\tpip --version # buildkit" }, { "size": 0, "instruction": "CMD [\"python3\"]" }, { "size": 0, "instruction": "LABEL version=20230605.01" }, { "size": 0, "instruction": "LABEL wget-at.version=1.21.3-at.20230605.01" }, { "digest": "sha256:e757a21bbc4946a8d02e59bb3b066b91ea2ad1cc52b1ab141cea7cbab521c6c7", "size": 914867, "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit" }, { "digest": "sha256:8176aefe8753273e32fd52691908c1c7d3f99f7e877d2cf2681541d3b2ff60da", "size": 752298, "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit" }, { "digest": "sha256:b871baa5d62728f638e41a80610a786fc94bed686c348069cad443ce26826115", "size": 3144, "instruction": "RUN /bin/sh -c ldconfig # buildkit" }, { "size": 0, "instruction": "ENV LC_ALL=C" }, { "digest": "sha256:87df8047bfa1981e37d7bb7b976abc6ca80e1917f5bece2baf1d54af9df3537f", "size": 82527600, "instruction": "RUN /bin/sh -c DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get -qqy --no-install-recommends -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold -o Dpkg::Options::=--force-unsafe-io update && DEBIAN_FRONTEND=noninteractive DEBIAN_PRIORITY=critical apt-get -qqy --no-install-recommends -o Dpkg::Options::=--force-confdef -o Dpkg::Options::=--force-confold -o Dpkg::Options::=--force-unsafe-io install gzip rsync liblua5.1-0 libluajit-5.1-2 libidn11 lua-socket lua-filesystem lua-sec lua-zip libpsl5 git poppler-utils luarocks libidn2-0-dev gcc && pip install --no-cache-dir requests seesaw zstandard && sed -i 's/lib\\/x86_64-linux-gnu/lib\\/'`gcc -dumpmachine`'/' /usr/share/lua/*/luarocks/site_config.lua && luarocks install html-entities && luarocks install idn2 && chmod +x /usr/local/bin/wget-lua && rm -rf /var/lib/apt/lists/* # buildkit" }, { "digest": "sha256:0815ce5316547e697e337f14af2b2b43e742b75fed638615b53ed7d733a23042", "size": 162, "instruction": "RUN /bin/sh -c echo \"#!/bin/bash\\n\\$@\" > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit" }, { "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1", "size": 32, "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua|dns|host|resolv\" # buildkit" }, { "digest": "sha256:e6edbcd1439caffd1e207c1b5f40f45a44cbded955e33532ea7db10340ffc2f8", "size": 94, "instruction": "WORKDIR /grab" }, { "size": 0, "instruction": "STOPSIGNAL SIGINT" }, { "size": 0, "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]" }, { "digest": "sha256:f85a1cc5b23835d0df07e2707630e76cae405a143a1b9ce00a01778210438668", "size": 515205, "instruction": "COPY . /grab # buildkit" }, { "digest": "sha256:562d32e11ddf9134cb152f93086115b95732a2468ebba6276f02eedb3d1039bf", "size": 137, "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit" }, { "digest": "sha256:71b0066672f810b7eaec07e0176a6aaadd791ed2d6b3218977588ab539e1c048", "size": 142, "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit" } ], "os": "linux", "os_features": null, "os_version": null, "size": 127155956, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.310447Z", "last_pushed": "2023-06-10T20:38:10.064542Z" }, { "architecture": "unknown", "features": null, "variant": null, "digest": "sha256:be944ad8b00445acd5b3aedeb1b3d2e02f456ee55708866064ef0c6806da3efb", "os": "unknown", "os_features": null, "os_version": null, "size": 1372, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.335611Z", "last_pushed": "2023-06-10T20:38:09.755808Z" }, { "architecture": "unknown", "features": null, "variant": null, "digest": "sha256:2eea36823967d55078b003ef609158169493abc301307fc6db34809bd28c9473", "os": "unknown", "os_features": null, "os_version": null, "size": 1381, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.372954Z", "last_pushed": "2023-06-10T20:38:10.209625Z" } ]