Metadata for the ArchiveTeam Docker Hub repositories
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

298 lines
18 KiB

  1. [
  2. {
  3. "architecture": "arm64",
  4. "features": null,
  5. "variant": null,
  6. "digest": "sha256:363291f4bbe89452a36b97cfcb68dc0f2fb73e063f334c0370ef510e359def05",
  7. "layers": [
  8. {
  9. "digest": "sha256:50eb042e2421869704212f3e076e9088033eb9a5254341fb1b3022e6e2784921",
  10. "size": 30062957,
  11. "instruction": "ADD file:83a81aad5cdb80c654a520d913c8bcafe2b8e1062d81c389d4577cde5ad68167 in / "
  12. },
  13. {
  14. "size": 0,
  15. "instruction": " CMD [\"bash\"]"
  16. },
  17. {
  18. "size": 0,
  19. "instruction": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  20. },
  21. {
  22. "size": 0,
  23. "instruction": "ENV LANG=C.UTF-8"
  24. },
  25. {
  26. "digest": "sha256:bbca35fa23bd882c61d0e9b59340fd04ecfb6635bc07bca263bf443d96235338",
  27. "size": 1064358,
  28. "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"
  29. },
  30. {
  31. "size": 0,
  32. "instruction": "ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568"
  33. },
  34. {
  35. "size": 0,
  36. "instruction": "ENV PYTHON_VERSION=3.9.17"
  37. },
  38. {
  39. "digest": "sha256:b2410983f1ca7e45ec919d08e12ba12038777ca54d11d9170c704ea00f4042e9",
  40. "size": 11101671,
  41. "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 '/=>/ { so = $(NF-1); if (index(so, \"/usr/local/\") == 1) { next }; gsub(\"^/(usr/)?\", \"\", so); print so }' \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"
  42. },
  43. {
  44. "digest": "sha256:8710bd561a22073bf1f4f9536e8bb22885ec5bff78ab1ef54575ed7796d03731",
  45. "size": 244,
  46. "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"
  47. },
  48. {
  49. "size": 0,
  50. "instruction": "ENV PYTHON_PIP_VERSION=23.0.1"
  51. },
  52. {
  53. "size": 0,
  54. "instruction": "ENV PYTHON_SETUPTOOLS_VERSION=58.1.0"
  55. },
  56. {
  57. "size": 0,
  58. "instruction": "ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py"
  59. },
  60. {
  61. "size": 0,
  62. "instruction": "ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207"
  63. },
  64. {
  65. "digest": "sha256:e5d9db4b9c39d7dfcb6c0bd54cd8f5895683a7ecee795d164a6513b4938c95b6",
  66. "size": 3138197,
  67. "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"
  68. },
  69. {
  70. "size": 0,
  71. "instruction": "CMD [\"python3\"]"
  72. },
  73. {
  74. "size": 0,
  75. "instruction": "LABEL version=20230605.01"
  76. },
  77. {
  78. "size": 0,
  79. "instruction": "LABEL wget-at.version=1.21.3-at.20230605.01"
  80. },
  81. {
  82. "digest": "sha256:23de13d18d6565f81b55cce0a708892fefab75a5f2cf0f824516beef36880392",
  83. "size": 968705,
  84. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  85. },
  86. {
  87. "digest": "sha256:e78259464b831958c56cf9b3495223a84232558686f9ebb0bac70ca0d9570310",
  88. "size": 927219,
  89. "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit"
  90. },
  91. {
  92. "digest": "sha256:43ddf2c99273260af77cd12cda91f78d3be69c969bed518c2922ef69eae7acba",
  93. "size": 3158,
  94. "instruction": "RUN /bin/sh -c ldconfig # buildkit"
  95. },
  96. {
  97. "size": 0,
  98. "instruction": "ENV LC_ALL=C"
  99. },
  100. {
  101. "digest": "sha256:ebf7feba9df243af87ad3f5c727cbfc5c5ae2fab1b38a6752dccdbc3d49f7b08",
  102. "size": 99344490,
  103. "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"
  104. },
  105. {
  106. "digest": "sha256:d50677499a0f7c14699b825a4f3c1a26ce189017ff6de471411305456be37a7a",
  107. "size": 161,
  108. "instruction": "RUN /bin/sh -c echo \"#!/bin/bash\\n\\$@\" > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit"
  109. },
  110. {
  111. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  112. "size": 32,
  113. "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua|dns|host|resolv\" # buildkit"
  114. },
  115. {
  116. "digest": "sha256:0943e5282803145ac29c5338da0481b50848e19bea96237d998afb05f66c28ba",
  117. "size": 94,
  118. "instruction": "WORKDIR /grab"
  119. },
  120. {
  121. "size": 0,
  122. "instruction": "STOPSIGNAL SIGINT"
  123. },
  124. {
  125. "size": 0,
  126. "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]"
  127. }
  128. ],
  129. "os": "linux",
  130. "os_features": null,
  131. "os_version": null,
  132. "size": 146611286,
  133. "status": "active",
  134. "last_pulled": "2024-02-28T10:33:49.126214Z",
  135. "last_pushed": "2023-07-13T06:39:36.87019Z"
  136. },
  137. {
  138. "architecture": "arm",
  139. "features": null,
  140. "variant": "v7",
  141. "digest": "sha256:234ccccbf2cf833a5792b0c7c0167d7ba4774f797ef6445cb8b0dd30744ac896",
  142. "layers": [
  143. {
  144. "digest": "sha256:d9e6a8b782e380f447723ac26499c5014f2d383b9210819b9e73e97abaf81249",
  145. "size": 26578754,
  146. "instruction": "ADD file:c023c66ee4b7cdae5c542f2ad2dd35aef94ad24e1b3b479a16538c46013ae6a5 in / "
  147. },
  148. {
  149. "size": 0,
  150. "instruction": " CMD [\"bash\"]"
  151. },
  152. {
  153. "size": 0,
  154. "instruction": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  155. },
  156. {
  157. "size": 0,
  158. "instruction": "ENV LANG=C.UTF-8"
  159. },
  160. {
  161. "digest": "sha256:e44a28e32c95ad2d753f8b684216bad4498c28cadee360fe9ac83f10f312c993",
  162. "size": 1041754,
  163. "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"
  164. },
  165. {
  166. "size": 0,
  167. "instruction": "ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568"
  168. },
  169. {
  170. "size": 0,
  171. "instruction": "ENV PYTHON_VERSION=3.9.17"
  172. },
  173. {
  174. "digest": "sha256:227d1dc60122c2f6d7319dc710015bf626d9604902e8f47c5766a58270fe5826",
  175. "size": 10374340,
  176. "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 '/=>/ { so = $(NF-1); if (index(so, \"/usr/local/\") == 1) { next }; gsub(\"^/(usr/)?\", \"\", so); print so }' \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"
  177. },
  178. {
  179. "digest": "sha256:cdc6d68898bec50c3dea4bcd341ecc3289d33f451560f62eb91f197352138fdd",
  180. "size": 242,
  181. "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"
  182. },
  183. {
  184. "size": 0,
  185. "instruction": "ENV PYTHON_PIP_VERSION=23.0.1"
  186. },
  187. {
  188. "size": 0,
  189. "instruction": "ENV PYTHON_SETUPTOOLS_VERSION=58.1.0"
  190. },
  191. {
  192. "size": 0,
  193. "instruction": "ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py"
  194. },
  195. {
  196. "size": 0,
  197. "instruction": "ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207"
  198. },
  199. {
  200. "digest": "sha256:3f9169aa77f8bec0f538dab2361c0a0f4235b8e8e928a4af6def40d4437873a6",
  201. "size": 3137921,
  202. "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"
  203. },
  204. {
  205. "size": 0,
  206. "instruction": "CMD [\"python3\"]"
  207. },
  208. {
  209. "size": 0,
  210. "instruction": "LABEL version=20230605.01"
  211. },
  212. {
  213. "size": 0,
  214. "instruction": "LABEL wget-at.version=1.21.3-at.20230605.01"
  215. },
  216. {
  217. "digest": "sha256:eb1b99cabc4cf5ae13cdc2ad9b416454645a4be14c0659af29584de6e3636ba3",
  218. "size": 921966,
  219. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  220. },
  221. {
  222. "digest": "sha256:0e37fb84805f7588031d4d889440e97c5cb27afcf46761d4b408633a70236d7e",
  223. "size": 752294,
  224. "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit"
  225. },
  226. {
  227. "digest": "sha256:547aedcb5076bc1de43f8fbd17a1fe39553c349d6993efec8dded3deb5c52734",
  228. "size": 3180,
  229. "instruction": "RUN /bin/sh -c ldconfig # buildkit"
  230. },
  231. {
  232. "size": 0,
  233. "instruction": "ENV LC_ALL=C"
  234. },
  235. {
  236. "digest": "sha256:63d03dafa6f0288f0121cf46593816e0adc8a1b9c7b7d5236dcb2e0b871b4521",
  237. "size": 82238149,
  238. "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"
  239. },
  240. {
  241. "digest": "sha256:f16ba993e5be02ef6f54291a4767f3404586cc7b79fe5db8cbbd26313fc78f93",
  242. "size": 161,
  243. "instruction": "RUN /bin/sh -c echo \"#!/bin/bash\\n\\$@\" > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit"
  244. },
  245. {
  246. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  247. "size": 32,
  248. "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua|dns|host|resolv\" # buildkit"
  249. },
  250. {
  251. "digest": "sha256:a255871501f6c19c5c0c22d3376d33da79e8d4d8c04f2b504781e02b8a840c33",
  252. "size": 93,
  253. "instruction": "WORKDIR /grab"
  254. },
  255. {
  256. "size": 0,
  257. "instruction": "STOPSIGNAL SIGINT"
  258. },
  259. {
  260. "size": 0,
  261. "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]"
  262. }
  263. ],
  264. "os": "linux",
  265. "os_features": null,
  266. "os_version": null,
  267. "size": 125048886,
  268. "status": "inactive",
  269. "last_pulled": "2024-01-16T06:25:23.372213Z",
  270. "last_pushed": "2023-07-13T06:39:37.030341Z"
  271. },
  272. {
  273. "architecture": "unknown",
  274. "features": null,
  275. "variant": null,
  276. "digest": "sha256:39a487697e3ea1db3225081765cabcb2a212a276dd80afaf5a52408ace934853",
  277. "os": "unknown",
  278. "os_features": null,
  279. "os_version": null,
  280. "size": 1708,
  281. "status": "inactive",
  282. "last_pulled": "2024-01-16T06:25:23.347035Z",
  283. "last_pushed": "2023-07-13T06:39:37.17795Z"
  284. },
  285. {
  286. "architecture": "unknown",
  287. "features": null,
  288. "variant": null,
  289. "digest": "sha256:1a9cd673ef0dbcd8f8bb7035c210e52ad1d0d81b8537f8c346f70e280190de3a",
  290. "os": "unknown",
  291. "os_features": null,
  292. "os_version": null,
  293. "size": 1723,
  294. "status": "inactive",
  295. "last_pulled": "2024-01-16T06:25:23.344334Z",
  296. "last_pushed": "2023-07-13T06:39:37.312111Z"
  297. }
  298. ]