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.

328 lines
19 KiB

  1. [
  2. {
  3. "architecture": "arm64",
  4. "features": null,
  5. "variant": null,
  6. "digest": "sha256:26abc7f494a0a835817d7d553b3f5b3f92074b4ba64903c82f50d3a40ca252a2",
  7. "layers": [
  8. {
  9. "digest": "sha256:92ad4775570054c645678402c8b75eb489b8e05313c9ccd7867bb591266db4d8",
  10. "size": 30062834,
  11. "instruction": "ADD file:10af42ddb9f028c5418d370fe2b841aa61e81f37de1ffe76900a783ba3926646 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:26fdba5dcbb4b12bb18ce6f9894ae569af59f750ec5e288adeec2a33bcd3d013",
  27. "size": 1064337,
  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:0b9c677acb65fc0ed49a54f120a16ca81aa4fe9ce81d359e606a476585722283",
  40. "size": 11101096,
  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:b343b8e8d26a00c73c7a4da03df82f65199cb90d822b8af8e336f392e87fbab3",
  45. "size": 242,
  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:9f7d1369196db3dfc24121cc063b876bc6651a684cb25d39a75a9cc86304ea3a",
  66. "size": 3138216,
  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:92a2b68c3d45e1be871ccbb32bf78718e01d618d665306c60da92efd96994695",
  83. "size": 960955,
  84. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  85. },
  86. {
  87. "digest": "sha256:001a043c46bc581991ab27c1183d6c0caa399962ff4fb9a689591bb7989dc5a1",
  88. "size": 927218,
  89. "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit"
  90. },
  91. {
  92. "digest": "sha256:72575d8be87e74b99621877cb697f40c1b363dffe66de9ecf20a75da8306396b",
  93. "size": 3150,
  94. "instruction": "RUN /bin/sh -c ldconfig # buildkit"
  95. },
  96. {
  97. "size": 0,
  98. "instruction": "ENV LC_ALL=C"
  99. },
  100. {
  101. "digest": "sha256:c7d68ff375ed803a6fcce0e22b4f61ac861c2fcceb13a20aa58ca3b09cef0ed6",
  102. "size": 99340356,
  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:9e6a6feca944c186e9a83d9a5928ecc37a753e8ee9b32ad181f3713d98d2ffff",
  107. "size": 160,
  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:a95e690abf3861f0565f47b6cd243b1a9cd13d8145b0e167e45cb113e9d01d53",
  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. "digest": "sha256:ece52aabb1ea51cc6f8fb561c4417352d52a137ecd2a50b6fe78fd62e22ed886",
  130. "size": 515506,
  131. "instruction": "COPY . /grab # buildkit"
  132. },
  133. {
  134. "digest": "sha256:dd8dc4647c5dee5ec7c92370686cb0244938d1b8b932bbd97a2a2915c2ed99c7",
  135. "size": 137,
  136. "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit"
  137. },
  138. {
  139. "digest": "sha256:9da030863d2ae1d68a603c3878b69e2f9e6bc11eea364e06f01cb9cfd5f968e9",
  140. "size": 142,
  141. "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit"
  142. }
  143. ],
  144. "os": "linux",
  145. "os_features": null,
  146. "os_version": null,
  147. "size": 147114475,
  148. "status": "inactive",
  149. "last_pulled": "2024-01-16T06:25:23.304733Z",
  150. "last_pushed": "2023-06-18T23:15:04.588471Z"
  151. },
  152. {
  153. "architecture": "arm",
  154. "features": null,
  155. "variant": "v7",
  156. "digest": "sha256:5dcee25f1c831b05e8b8eabec770c00ac639333651a8e36c10c8c2fe7f47ec04",
  157. "layers": [
  158. {
  159. "digest": "sha256:b7c295cb849275e211d18b720d2349cc84c0038be1a362aca4765ceb3342043c",
  160. "size": 26578690,
  161. "instruction": "ADD file:319a24b7e30fc548f9dcf48ad6cee469e8bf7e89c67901cf3851e41e75693489 in / "
  162. },
  163. {
  164. "size": 0,
  165. "instruction": " CMD [\"bash\"]"
  166. },
  167. {
  168. "size": 0,
  169. "instruction": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  170. },
  171. {
  172. "size": 0,
  173. "instruction": "ENV LANG=C.UTF-8"
  174. },
  175. {
  176. "digest": "sha256:c35108b49a0e99768237da3b73db55222643da0331d84d76eec9f02e5575f6f5",
  177. "size": 1041743,
  178. "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"
  179. },
  180. {
  181. "size": 0,
  182. "instruction": "ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568"
  183. },
  184. {
  185. "size": 0,
  186. "instruction": "ENV PYTHON_VERSION=3.9.17"
  187. },
  188. {
  189. "digest": "sha256:95c0d3e1905293915cd40e4f3640fe3fa2e888d8d18b159363b14fca50c9764f",
  190. "size": 10374355,
  191. "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"
  192. },
  193. {
  194. "digest": "sha256:461a7f0c789586f6f7f1b09309cfe88f24e031aba9bb0c0bd93de83821b8d77f",
  195. "size": 244,
  196. "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"
  197. },
  198. {
  199. "size": 0,
  200. "instruction": "ENV PYTHON_PIP_VERSION=23.0.1"
  201. },
  202. {
  203. "size": 0,
  204. "instruction": "ENV PYTHON_SETUPTOOLS_VERSION=58.1.0"
  205. },
  206. {
  207. "size": 0,
  208. "instruction": "ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/0d8570dc44796f4369b652222cf176b3db6ac70e/public/get-pip.py"
  209. },
  210. {
  211. "size": 0,
  212. "instruction": "ENV PYTHON_GET_PIP_SHA256=96461deced5c2a487ddc65207ec5a9cffeca0d34e7af7ea1afc470ff0d746207"
  213. },
  214. {
  215. "digest": "sha256:edbd1b614cbe6857b1b387b1d59bfa81b5a5ff4def56c32f99fc93dcd51f198c",
  216. "size": 3137851,
  217. "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"
  218. },
  219. {
  220. "size": 0,
  221. "instruction": "CMD [\"python3\"]"
  222. },
  223. {
  224. "size": 0,
  225. "instruction": "LABEL version=20230605.01"
  226. },
  227. {
  228. "size": 0,
  229. "instruction": "LABEL wget-at.version=1.21.3-at.20230605.01"
  230. },
  231. {
  232. "digest": "sha256:fd6ef53078eff96c44ac71e785670a22598331be8740752ba877dc982bd920b9",
  233. "size": 914865,
  234. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  235. },
  236. {
  237. "digest": "sha256:f558f8f75406402c971d343316294454a4d5c86ff9fb8ac522d13e66bac48010",
  238. "size": 752303,
  239. "instruction": "COPY /usr/local/lib /usr/local/lib # buildkit"
  240. },
  241. {
  242. "digest": "sha256:b95ac75d36d3523aa5b979ec557640c3d8c990cafcfc18efc4b7c93ade471d67",
  243. "size": 3156,
  244. "instruction": "RUN /bin/sh -c ldconfig # buildkit"
  245. },
  246. {
  247. "size": 0,
  248. "instruction": "ENV LC_ALL=C"
  249. },
  250. {
  251. "digest": "sha256:1f50f945bb5dd6bafdf01b572754f6de43b36e77302cf72a089156ad9d0fa8f0",
  252. "size": 82527444,
  253. "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"
  254. },
  255. {
  256. "digest": "sha256:79670f797693531e1ef6dbfc20738f51835da83702687401514cd8ee54472094",
  257. "size": 160,
  258. "instruction": "RUN /bin/sh -c echo \"#!/bin/bash\\n\\$@\" > /usr/bin/sudo && chmod +x /usr/bin/sudo # buildkit"
  259. },
  260. {
  261. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  262. "size": 32,
  263. "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua|dns|host|resolv\" # buildkit"
  264. },
  265. {
  266. "digest": "sha256:65abc238e9039e0f989337b4b0015aafb8214f31a2d5842ef64e510001d0cc8d",
  267. "size": 94,
  268. "instruction": "WORKDIR /grab"
  269. },
  270. {
  271. "size": 0,
  272. "instruction": "STOPSIGNAL SIGINT"
  273. },
  274. {
  275. "size": 0,
  276. "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]"
  277. },
  278. {
  279. "digest": "sha256:ece52aabb1ea51cc6f8fb561c4417352d52a137ecd2a50b6fe78fd62e22ed886",
  280. "size": 515506,
  281. "instruction": "COPY . /grab # buildkit"
  282. },
  283. {
  284. "digest": "sha256:dd8dc4647c5dee5ec7c92370686cb0244938d1b8b932bbd97a2a2915c2ed99c7",
  285. "size": 137,
  286. "instruction": "RUN /bin/sh -c (test -x warrior-install.sh || touch warrior-install.sh) && sh warrior-install.sh # buildkit"
  287. },
  288. {
  289. "digest": "sha256:9da030863d2ae1d68a603c3878b69e2f9e6bc11eea364e06f01cb9cfd5f968e9",
  290. "size": 142,
  291. "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit"
  292. }
  293. ],
  294. "os": "linux",
  295. "os_features": null,
  296. "os_version": null,
  297. "size": 125846722,
  298. "status": "inactive",
  299. "last_pulled": "2024-01-16T06:25:23.461912Z",
  300. "last_pushed": "2023-06-18T23:15:04.122726Z"
  301. },
  302. {
  303. "architecture": "unknown",
  304. "features": null,
  305. "variant": null,
  306. "digest": "sha256:c3e2aecc448a252caae7af897a6c6e0289413f132089ba0631843d9a64c3eda3",
  307. "os": "unknown",
  308. "os_features": null,
  309. "os_version": null,
  310. "size": 1371,
  311. "status": "inactive",
  312. "last_pulled": "2024-01-16T06:25:23.348974Z",
  313. "last_pushed": "2023-06-18T23:15:04.910458Z"
  314. },
  315. {
  316. "architecture": "unknown",
  317. "features": null,
  318. "variant": null,
  319. "digest": "sha256:e3e10b5130a31e02641815d9566b60923d23ff20d9438b1a8f6291445a74033c",
  320. "os": "unknown",
  321. "os_features": null,
  322. "os_version": null,
  323. "size": 1380,
  324. "status": "inactive",
  325. "last_pulled": "2024-01-16T06:25:23.347434Z",
  326. "last_pushed": "2023-06-18T23:15:05.276103Z"
  327. }
  328. ]