[ { "architecture": "arm64", "features": null, "variant": null, "digest": "sha256:72c85bedce1e06ff7e82e212e06499f4b42e1c490462e23eb61bc52b2db79b9c", "layers": [ { "digest": "sha256:92ad4775570054c645678402c8b75eb489b8e05313c9ccd7867bb591266db4d8", "size": 30062834, "instruction": "ADD file:10af42ddb9f028c5418d370fe2b841aa61e81f37de1ffe76900a783ba3926646 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:26fdba5dcbb4b12bb18ce6f9894ae569af59f750ec5e288adeec2a33bcd3d013", "size": 1064337, "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:65d2ce0adb2b0b77ddae3a6788d5dca6806ae5761f314995b162668855c6b5e5", "size": 11101120, "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:baff7ab6cae45e8fc733b3dddd0d6fd9cb3823410e3109a450366ba0af380002", "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:6742d08c2b70d13db5ccf8f146b690ff7bbed6a343d16f48d3c06f16d4dc391a", "size": 3138224, "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:b2d15a30d631ee42d525331498f2dddf439d99757c9cf1bf32e9720a3f87932d", "size": 960954, "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit" }, { "digest": "sha256:6aac27a1c859a1298ec4242dfbb0071b12918cf78ea82b1d1bec371cd5b54db1", "size": 927217, "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit" }, { "digest": "sha256:a782c79eb2ec17f30780ccb0d0dfe204ebfc7911ecc0519413c58f017a6fcd52", "size": 3160, "instruction": "RUN /bin/sh -c ldconfig # buildkit" }, { "size": 0, "instruction": "ENV LC_ALL=C" }, { "digest": "sha256:469b068f6d2066b2a42f0921b2a2c74078449b3ffaca72468f95886a6672f14c", "size": 99339386, "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:a7530eb7022bc1514a81d8b50c63fe7223a88a43ad3470421b44d06f3fca04fd", "size": 160, "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:1fc33756984dfe75b1549a3979de4181ebab680284e1fb433731357841314af3", "size": 94, "instruction": "WORKDIR /grab" }, { "size": 0, "instruction": "STOPSIGNAL SIGINT" }, { "size": 0, "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]" }, { "digest": "sha256:82db39ca6f485a103f02c5b394b2c4fe9c6e4cefa48d0cf0e76d545ba615597b", "size": 515378, "instruction": "COPY . /grab # buildkit" }, { "digest": "sha256:840398489155e595ae13f882eb90c689c72894bfa3436b16683515e0ed13559f", "size": 137, "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit" }, { "digest": "sha256:e89c24df6b3c911a0be433a46decbc924644cedbb404a38f1ada3ae234d4c1fd", "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": 147113419, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.322322Z", "last_pushed": "2023-06-14T00:44:02.849287Z" }, { "architecture": "arm", "features": null, "variant": "v7", "digest": "sha256:ab57755108c0d7c9e3287c4b34637bbf752c2cf4a279ea14711f2e473348fecf", "layers": [ { "digest": "sha256:b7c295cb849275e211d18b720d2349cc84c0038be1a362aca4765ceb3342043c", "size": 26578690, "instruction": "ADD file:319a24b7e30fc548f9dcf48ad6cee469e8bf7e89c67901cf3851e41e75693489 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:c35108b49a0e99768237da3b73db55222643da0331d84d76eec9f02e5575f6f5", "size": 1041743, "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:9105224c93a86b5309a2805d9ec4b51836f2c05daa4dfe0f876f28a88e6a7402", "size": 10374242, "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:ac1de5e21c25f28b6ace6c422045f38d49785e1b35b0ee5871ad532e5149bdc9", "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:839a2cd6f3e91b7d1035a718e74f6c27774b8a31373beb43fbaeeec52d4e754d", "size": 3137855, "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:46c4ff439684da8cf088d894118000e30938cef5f322eac8a94f29203978fd7b", "size": 914864, "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit" }, { "digest": "sha256:658db9715a913fd46316ad2e4dd0f9b8e3bdd41029458cdead29e4b328a0d5e6", "size": 752295, "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit" }, { "digest": "sha256:610942766c4b0f48139fe7b25d7e74fbfb274bb7b51edb183d3b0b3db702423b", "size": 3185, "instruction": "RUN /bin/sh -c ldconfig # buildkit" }, { "size": 0, "instruction": "ENV LC_ALL=C" }, { "digest": "sha256:21bde7fa5079655b04d3ffe0968b449681cc9b12be51b35a63ec14155a56ca2f", "size": 82527540, "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:6a66e8f9194033dba0bb5d3702d44faa859db2a898757ebdeb03f61c12c2ab25", "size": 161, "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:423caee5cfaa9e8ea8e5515868d9d7ec02f667d071219d62c466aa455ba49704", "size": 94, "instruction": "WORKDIR /grab" }, { "size": 0, "instruction": "STOPSIGNAL SIGINT" }, { "size": 0, "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]" }, { "digest": "sha256:82db39ca6f485a103f02c5b394b2c4fe9c6e4cefa48d0cf0e76d545ba615597b", "size": 515378, "instruction": "COPY . /grab # buildkit" }, { "digest": "sha256:840398489155e595ae13f882eb90c689c72894bfa3436b16683515e0ed13559f", "size": 137, "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit" }, { "digest": "sha256:e89c24df6b3c911a0be433a46decbc924644cedbb404a38f1ada3ae234d4c1fd", "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": 125846602, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.347695Z", "last_pushed": "2023-06-14T00:44:03.106577Z" }, { "architecture": "unknown", "features": null, "variant": null, "digest": "sha256:baea4c3228bc5ff8beea26048a8116f27a2a1a60f5a51108c89db83deeef51be", "os": "unknown", "os_features": null, "os_version": null, "size": 1372, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.310895Z", "last_pushed": "2023-06-14T00:44:02.569519Z" }, { "architecture": "unknown", "features": null, "variant": null, "digest": "sha256:26321fb233010bf0a8af451a087b0e38f1f57ff2f8dcc0759eb0ac369ace7d3f", "os": "unknown", "os_features": null, "os_version": null, "size": 1381, "status": "inactive", "last_pulled": "2024-01-16T06:25:23.318522Z", "last_pushed": "2023-06-14T00:44:02.373439Z" } ]