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.

246 lignes
16 KiB

  1. [
  2. {
  3. "architecture": "arm64",
  4. "features": null,
  5. "variant": null,
  6. "digest": "sha256:37d4375a9d8c44e672f0f7a0124d1b7bccb07fa010c911682427eefdc990057b",
  7. "layers": [
  8. {
  9. "digest": "sha256:5f30c56efde95016859c51bdc10e665dd57dc3c8d22e7abbf384ae9722dfa19e",
  10. "size": 25914885,
  11. "instruction": "ADD file:342233874a06722375663380e7e3a04502a995dfbbc425cd1913f10e96a50dcb 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:9353727c2c340da2074ff7954456841315eaa1c1db324a467cc2cdb3d9af7c35",
  27. "size": 2646671,
  28. "instruction": "/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/*"
  29. },
  30. {
  31. "size": 0,
  32. "instruction": " ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568"
  33. },
  34. {
  35. "size": 0,
  36. "instruction": " ENV PYTHON_VERSION=3.9.15"
  37. },
  38. {
  39. "digest": "sha256:048bbe3f205c74d99edf1ddcbf294e825da8970150496abad54fa08a495b104a",
  40. "size": 11584381,
  41. "instruction": "/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 dirmngr \t\tlibbluetooth-dev \t\tlibbz2-dev \t\tlibc6-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; \tcommand -v gpgconf > /dev/null && gpgconf --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)\"; \tmake -j \"$nproc\" \t\tLDFLAGS=\"-Wl,--strip-all\" \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"
  42. },
  43. {
  44. "digest": "sha256:5242b2e92738bb0fb903856b541af3245499e1434cab0ffc93d545839e42ca93",
  45. "size": 232,
  46. "instruction": "/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"
  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/6d265be7a6b5bc4e9c5c07646aee0bf0394be03d/public/get-pip.py"
  59. },
  60. {
  61. "size": 0,
  62. "instruction": " ENV PYTHON_GET_PIP_SHA256=36c6f6214694ef64cc70f4127ac0ccec668408a93825359d998fb31d24968d67"
  63. },
  64. {
  65. "digest": "sha256:8c62048a8e1cdea8d371209fbde3cbeadd52a6ef42398dfa6e4960e8403f2267",
  66. "size": 3172530,
  67. "instruction": "/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"
  68. },
  69. {
  70. "size": 0,
  71. "instruction": " CMD [\"python3\"]"
  72. },
  73. {
  74. "digest": "sha256:8171791cd5cd375fca6a65ccdef7a818e0c9e7ae706dbb6f841bc0f42c25b737",
  75. "size": 958079,
  76. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  77. },
  78. {
  79. "size": 0,
  80. "instruction": "ENV LC_ALL=C"
  81. },
  82. {
  83. "digest": "sha256:34bb498fb3abc19712d8223f01f63ac78965a7648e9725a6c46632a456ae9be4",
  84. "size": 85495225,
  85. "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 && 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"
  86. },
  87. {
  88. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  89. "size": 32,
  90. "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua\" # buildkit"
  91. },
  92. {
  93. "digest": "sha256:8596c8ce714b821ba5f697bea2e372e4b5b33f403ae8bf5817d39464a523a50e",
  94. "size": 100,
  95. "instruction": "WORKDIR /grab"
  96. },
  97. {
  98. "size": 0,
  99. "instruction": "STOPSIGNAL SIGINT"
  100. },
  101. {
  102. "size": 0,
  103. "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]"
  104. },
  105. {
  106. "digest": "sha256:8a9196fcdf27e39df187e88abd467a310686bfb17e0847061d50a006dfdf8835",
  107. "size": 514188,
  108. "instruction": "COPY . /grab # buildkit"
  109. },
  110. {
  111. "digest": "sha256:a4c4ae2dd3fa16555943ae4b65b5fdd9c374a55003bc89c44a4417355ab3c011",
  112. "size": 150,
  113. "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit"
  114. }
  115. ],
  116. "os": "linux",
  117. "os_features": null,
  118. "os_version": null,
  119. "size": 130286473,
  120. "status": "inactive",
  121. "last_pulled": "2023-05-21T06:20:12.477241Z",
  122. "last_pushed": "2022-10-25T18:04:02.851325Z"
  123. },
  124. {
  125. "architecture": "arm",
  126. "features": null,
  127. "variant": "v7",
  128. "digest": "sha256:5e78aff073cbdc0f625975c62208b30315c7a17232ec7fa6a03a0df4b87f56e5",
  129. "layers": [
  130. {
  131. "digest": "sha256:e4ea50bd37db50088d8cad765fade1138e096b0f83b40a13e3127931b49bab77",
  132. "size": 22750167,
  133. "instruction": "ADD file:d3bb9b1f86a2639e67a7615e4d07996af61820f6d866ee4f6c5c8e5396da794d in / "
  134. },
  135. {
  136. "size": 0,
  137. "instruction": " CMD [\"bash\"]"
  138. },
  139. {
  140. "size": 0,
  141. "instruction": " ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  142. },
  143. {
  144. "size": 0,
  145. "instruction": " ENV LANG=C.UTF-8"
  146. },
  147. {
  148. "digest": "sha256:a076b1badbba9df89fc685a043044922797a850bb3a7a6c0026d0b98358c0ac1",
  149. "size": 2368343,
  150. "instruction": "/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/*"
  151. },
  152. {
  153. "size": 0,
  154. "instruction": " ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568"
  155. },
  156. {
  157. "size": 0,
  158. "instruction": " ENV PYTHON_VERSION=3.9.15"
  159. },
  160. {
  161. "digest": "sha256:5d80bad53aabc681511b9ff9915a34e15f3738281d02c62e24dd70a87efb89ba",
  162. "size": 10771661,
  163. "instruction": "/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 dirmngr \t\tlibbluetooth-dev \t\tlibbz2-dev \t\tlibc6-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; \tcommand -v gpgconf > /dev/null && gpgconf --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)\"; \tmake -j \"$nproc\" \t\tLDFLAGS=\"-Wl,--strip-all\" \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"
  164. },
  165. {
  166. "digest": "sha256:beab2333ef19be3b9e2fa2ad363d616012eb5c3b7623de6019a8724f67fda279",
  167. "size": 232,
  168. "instruction": "/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"
  169. },
  170. {
  171. "size": 0,
  172. "instruction": " ENV PYTHON_PIP_VERSION=22.0.4"
  173. },
  174. {
  175. "size": 0,
  176. "instruction": " ENV PYTHON_SETUPTOOLS_VERSION=58.1.0"
  177. },
  178. {
  179. "size": 0,
  180. "instruction": " ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/6d265be7a6b5bc4e9c5c07646aee0bf0394be03d/public/get-pip.py"
  181. },
  182. {
  183. "size": 0,
  184. "instruction": " ENV PYTHON_GET_PIP_SHA256=36c6f6214694ef64cc70f4127ac0ccec668408a93825359d998fb31d24968d67"
  185. },
  186. {
  187. "digest": "sha256:44a260db3322e82179ca307303ae6735680242664b50699f5d6c36dd412d975e",
  188. "size": 3172170,
  189. "instruction": "/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"
  190. },
  191. {
  192. "size": 0,
  193. "instruction": " CMD [\"python3\"]"
  194. },
  195. {
  196. "digest": "sha256:73cd67e87fdd57a51a24f50f1eda937968f5149af95b8244a43aadb058f6b7c1",
  197. "size": 907730,
  198. "instruction": "COPY /wget /usr/local/bin/wget-lua # buildkit"
  199. },
  200. {
  201. "size": 0,
  202. "instruction": "ENV LC_ALL=C"
  203. },
  204. {
  205. "digest": "sha256:0374b6977961b78e58722951a57be0fd21e6813b682050bd223742edfe950567",
  206. "size": 72462148,
  207. "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 && 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"
  208. },
  209. {
  210. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  211. "size": 32,
  212. "instruction": "RUN /bin/sh -c /usr/local/bin/wget-lua --help | grep -iE \"gnu|warc|lua\" # buildkit"
  213. },
  214. {
  215. "digest": "sha256:d99f2de83fb18076ba962ad3331efc1c2c5c955f2d98b41e82c0504c3dbef8a8",
  216. "size": 100,
  217. "instruction": "WORKDIR /grab"
  218. },
  219. {
  220. "size": 0,
  221. "instruction": "STOPSIGNAL SIGINT"
  222. },
  223. {
  224. "size": 0,
  225. "instruction": "ENTRYPOINT [\"run-pipeline3\" \"--disable-web-server\" \"pipeline.py\"]"
  226. },
  227. {
  228. "digest": "sha256:8a9196fcdf27e39df187e88abd467a310686bfb17e0847061d50a006dfdf8835",
  229. "size": 514188,
  230. "instruction": "COPY . /grab # buildkit"
  231. },
  232. {
  233. "digest": "sha256:a4c4ae2dd3fa16555943ae4b65b5fdd9c374a55003bc89c44a4417355ab3c011",
  234. "size": 150,
  235. "instruction": "RUN /bin/sh -c test -x /grab/wget-at || ln -fs /usr/local/bin/wget-lua /grab/wget-at # buildkit"
  236. }
  237. ],
  238. "os": "linux",
  239. "os_features": null,
  240. "os_version": null,
  241. "size": 112946921,
  242. "status": "inactive",
  243. "last_pulled": "2023-05-21T06:20:14.751862Z",
  244. "last_pushed": "2022-10-25T18:04:03.348291Z"
  245. }
  246. ]