Metadata for the ArchiveTeam Docker Hub repositories
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

308 lignes
19 KiB

  1. [
  2. {
  3. "architecture": "arm64",
  4. "features": null,
  5. "variant": null,
  6. "digest": "sha256:7515c9375eba390ad1c91aa4d524c71682b1899cbf1c9214e703feeef11e2dfd",
  7. "layers": [
  8. {
  9. "digest": "sha256:3ca7b6c7180eac66b9c4301084a16319f41eb7f7365bdf91bcc272bd24cb4149",
  10. "size": 25921744,
  11. "instruction": "ADD file:55a469039df0bf0e94ef7cd2d6fd355ad0c69e0e23e7921194445dd1fe281e3b 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:ce731931b7bacaec925f34de8e6de950a971e3a7c5fc1a94ced8ee13523c0c09",
  27. "size": 2648925,
  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.16"
  37. },
  38. {
  39. "digest": "sha256:4b997ede8c3127d829d7bc21b3552154772ad621c3478f940182cf49cd46d5ec",
  40. "size": 11190713,
  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 '/=>/ { 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"
  42. },
  43. {
  44. "digest": "sha256:3316b92a544932b467771545d78b07393facab582dcc7e47473a8720e5f7b79e",
  45. "size": 243,
  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=22.0.4"
  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:298d4071971764633688aaeb1703e311644f7f8ee8152cb76e9aa875e505a41d",
  66. "size": 3192907,
  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=20230209.01"
  76. },
  77. {
  78. "size": 0,
  79. "instruction": "LABEL wget-at.version=1.21.3-at.20230208.01"
  80. },
  81. {
  82. "digest": "sha256:75e584c6d588d39b932ece29298a6858b07b91c0a529b51400610aed1d6f5b02",
  83. "size": 963282,
  84. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  85. },
  86. {
  87. "size": 0,
  88. "instruction": "ENV LC_ALL=C"
  89. },
  90. {
  91. "digest": "sha256:17502dec2c97bc085ca480a079a08c44e1aab1ad7450c7faae09d238c6047a6d",
  92. "size": 86027115,
  93. "instruction": "RUN /bin/sh -c echo deb http://deb.debian.org/debian buster-backports main contrib > /etc/apt/sources.list.d/backports.list && 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 libc-ares2 && 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 -t buster-backports install zstd libzstd-dev libzstd1 && 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"
  94. },
  95. {
  96. "digest": "sha256:85f70161895797b3096d3fbfa79915585157b471af637b5753e9b215ad5b3ec6",
  97. "size": 162,
  98. "instruction": "RUN /bin/sh -c echo \"#!/bin/bash\\n\\$@\" > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit"
  99. },
  100. {
  101. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  102. "size": 32,
  103. "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua\" # buildkit"
  104. },
  105. {
  106. "digest": "sha256:fb69cda013c90fcb31e373226d3336088b19ebb97fb3ffff1bcb66abb673a107",
  107. "size": 93,
  108. "instruction": "WORKDIR /grab"
  109. },
  110. {
  111. "size": 0,
  112. "instruction": "STOPSIGNAL SIGINT"
  113. },
  114. {
  115. "size": 0,
  116. "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]"
  117. },
  118. {
  119. "digest": "sha256:91c33377ee91eb2da2efdc5894eed550033fce821322659e997031269b0965e9",
  120. "size": 514574,
  121. "instruction": "COPY . /grab # buildkit"
  122. },
  123. {
  124. "digest": "sha256:1caab6e2bd1bfa9c96261a3f88012fb379dd152362c1bdf0be0b8182cb828f75",
  125. "size": 137,
  126. "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit"
  127. },
  128. {
  129. "digest": "sha256:aa2361d8246f80b2827bd8f58e125635ed5761408d8a130edf07640d9c84dca6",
  130. "size": 142,
  131. "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit"
  132. }
  133. ],
  134. "os": "linux",
  135. "os_features": null,
  136. "os_version": null,
  137. "size": 130460069,
  138. "status": "inactive",
  139. "last_pulled": "2024-01-16T06:25:23.317553Z",
  140. "last_pushed": "2023-05-29T15:43:51.41635Z"
  141. },
  142. {
  143. "architecture": "arm",
  144. "features": null,
  145. "variant": "v7",
  146. "digest": "sha256:760653ba783aeb05ba24721fe37d39da02cc3f1910909f6aa9f763ffda5ed71d",
  147. "layers": [
  148. {
  149. "digest": "sha256:0265ca860f8350954d0667b45b48728e992970f63232c58e18fac59852acd8f2",
  150. "size": 22747412,
  151. "instruction": "ADD file:fc75413703cf08c1fc3b981ebbde07494b7ad8176aadd5f3a8fb891f0c48e7b9 in / "
  152. },
  153. {
  154. "size": 0,
  155. "instruction": " CMD [\"bash\"]"
  156. },
  157. {
  158. "size": 0,
  159. "instruction": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  160. },
  161. {
  162. "size": 0,
  163. "instruction": "ENV LANG=C.UTF-8"
  164. },
  165. {
  166. "digest": "sha256:6e22a2338ef965844f677cae44abb693729ef641e31a0610b126d853ff101a9d",
  167. "size": 2370122,
  168. "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"
  169. },
  170. {
  171. "size": 0,
  172. "instruction": "ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568"
  173. },
  174. {
  175. "size": 0,
  176. "instruction": "ENV PYTHON_VERSION=3.9.16"
  177. },
  178. {
  179. "digest": "sha256:9068742fa182ad985aec499c6004a319a5ce62097f0acf88b6980e7218138d60",
  180. "size": 10427086,
  181. "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"
  182. },
  183. {
  184. "digest": "sha256:47989f376c4f1de09bbb4ef8602dabc590e55eac3f244c2d647c2dea2de72cd6",
  185. "size": 243,
  186. "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"
  187. },
  188. {
  189. "size": 0,
  190. "instruction": "ENV PYTHON_PIP_VERSION=22.0.4"
  191. },
  192. {
  193. "size": 0,
  194. "instruction": "ENV PYTHON_SETUPTOOLS_VERSION=58.1.0"
  195. },
  196. {
  197. "size": 0,
  198. "instruction": "ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py"
  199. },
  200. {
  201. "size": 0,
  202. "instruction": "ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207"
  203. },
  204. {
  205. "digest": "sha256:9af0880e62976053ab852a81c2bc913ea9e38f9b29fee08af3c5a43e90a8a7e8",
  206. "size": 3192703,
  207. "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"
  208. },
  209. {
  210. "size": 0,
  211. "instruction": "CMD [\"python3\"]"
  212. },
  213. {
  214. "size": 0,
  215. "instruction": "LABEL version=20230209.01"
  216. },
  217. {
  218. "size": 0,
  219. "instruction": "LABEL wget-at.version=1.21.3-at.20230208.01"
  220. },
  221. {
  222. "digest": "sha256:0110709aa814d1af635c36ebe55efd41a675aea23c49952fb422e8996fc3a6b3",
  223. "size": 913400,
  224. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  225. },
  226. {
  227. "size": 0,
  228. "instruction": "ENV LC_ALL=C"
  229. },
  230. {
  231. "digest": "sha256:ba37f6c1b499b1bd1877fe6fea6126efc84df190ec2d40e322d674726f45c7db",
  232. "size": 74464964,
  233. "instruction": "RUN /bin/sh -c echo deb http://deb.debian.org/debian buster-backports main contrib > /etc/apt/sources.list.d/backports.list && 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 libc-ares2 && 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 -t buster-backports install zstd libzstd-dev libzstd1 && 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"
  234. },
  235. {
  236. "digest": "sha256:f70c2a55df112c1fb35b834176e86c7d1018d7105628934191c5923f77cdafa8",
  237. "size": 161,
  238. "instruction": "RUN /bin/sh -c echo \"#!/bin/bash\\n\\$@\" > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit"
  239. },
  240. {
  241. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  242. "size": 32,
  243. "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua\" # buildkit"
  244. },
  245. {
  246. "digest": "sha256:639863fdb5b5123a6cdcde5921b679cf468c3fa12117a1e50d1d7496b284f577",
  247. "size": 94,
  248. "instruction": "WORKDIR /grab"
  249. },
  250. {
  251. "size": 0,
  252. "instruction": "STOPSIGNAL SIGINT"
  253. },
  254. {
  255. "size": 0,
  256. "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]"
  257. },
  258. {
  259. "digest": "sha256:91c33377ee91eb2da2efdc5894eed550033fce821322659e997031269b0965e9",
  260. "size": 514574,
  261. "instruction": "COPY . /grab # buildkit"
  262. },
  263. {
  264. "digest": "sha256:1caab6e2bd1bfa9c96261a3f88012fb379dd152362c1bdf0be0b8182cb828f75",
  265. "size": 137,
  266. "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit"
  267. },
  268. {
  269. "digest": "sha256:aa2361d8246f80b2827bd8f58e125635ed5761408d8a130edf07640d9c84dca6",
  270. "size": 142,
  271. "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit"
  272. }
  273. ],
  274. "os": "linux",
  275. "os_features": null,
  276. "os_version": null,
  277. "size": 114631070,
  278. "status": "inactive",
  279. "last_pulled": "2024-01-16T06:25:23.308893Z",
  280. "last_pushed": "2023-05-29T15:43:51.163204Z"
  281. },
  282. {
  283. "architecture": "unknown",
  284. "features": null,
  285. "variant": null,
  286. "digest": "sha256:3ab95e42f4c717bf14a41420efd3c7896a02d5fa1b5da41526739ec4ccda4a1e",
  287. "os": "unknown",
  288. "os_features": null,
  289. "os_version": null,
  290. "size": 1372,
  291. "status": "inactive",
  292. "last_pulled": "2024-01-16T06:25:23.364464Z",
  293. "last_pushed": "2023-05-29T15:43:50.941463Z"
  294. },
  295. {
  296. "architecture": "unknown",
  297. "features": null,
  298. "variant": null,
  299. "digest": "sha256:2823684356d3cb649054faad17e5bc0b4b5fd5357661dc9c631e1cecfc6366e6",
  300. "os": "unknown",
  301. "os_features": null,
  302. "os_version": null,
  303. "size": 1381,
  304. "status": "inactive",
  305. "last_pulled": "2024-01-16T06:25:23.314313Z",
  306. "last_pushed": "2023-05-29T15:43:51.53411Z"
  307. }
  308. ]