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.

162 lines
8.6 KiB

  1. [
  2. {
  3. "architecture": "amd64",
  4. "features": null,
  5. "variant": null,
  6. "digest": "sha256:2bc2cea9d9c644086afe079a591a750fd8ed2e7c0eac3e385ab3761fadb384ea",
  7. "layers": [
  8. {
  9. "digest": "sha256:69b3efbf67c2d9a46fdfdc8480b5a03ef73e9999a53aad57213447784f01eb6e",
  10. "size": 55058028,
  11. "instruction": "ADD file:8a9222387b89a9ac763fd72610ce01ab17f64387cbfde30a6af1861a82030aad in / "
  12. },
  13. {
  14. "size": 0,
  15. "instruction": " CMD [\"bash\"]"
  16. },
  17. {
  18. "digest": "sha256:1dedceb9c21c46986231d9dfb896b37cfc470d67799e7e919a641ac54dcc9eed",
  19. "size": 15764226,
  20. "instruction": "/bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tca-certificates \t\tcurl \t\tgnupg \t\tnetbase \t\twget \t; \trm -rf /var/lib/apt/lists/*"
  21. },
  22. {
  23. "digest": "sha256:98dfe1ecd6ba8d7f42ee14ec8a64da6ba633ed96ac9c58f6c5a0028ce6908916",
  24. "size": 54595813,
  25. "instruction": "/bin/sh -c apt-get update && apt-get install -y --no-install-recommends \t\tgit \t\tmercurial \t\topenssh-client \t\tsubversion \t\t\t\tprocps \t&& rm -rf /var/lib/apt/lists/*"
  26. },
  27. {
  28. "digest": "sha256:d198e46b4004b646fce783c4378d6841632c0fb7fb2360927673d788abfda172",
  29. "size": 196879362,
  30. "instruction": "/bin/sh -c set -ex; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tautoconf \t\tautomake \t\tbzip2 \t\tdpkg-dev \t\tfile \t\tg++ \t\tgcc \t\timagemagick \t\tlibbz2-dev \t\tlibc6-dev \t\tlibcurl4-openssl-dev \t\tlibdb-dev \t\tlibevent-dev \t\tlibffi-dev \t\tlibgdbm-dev \t\tlibglib2.0-dev \t\tlibgmp-dev \t\tlibjpeg-dev \t\tlibkrb5-dev \t\tliblzma-dev \t\tlibmagickcore-dev \t\tlibmagickwand-dev \t\tlibmaxminddb-dev \t\tlibncurses5-dev \t\tlibncursesw5-dev \t\tlibpng-dev \t\tlibpq-dev \t\tlibreadline-dev \t\tlibsqlite3-dev \t\tlibssl-dev \t\tlibtool \t\tlibwebp-dev \t\tlibxml2-dev \t\tlibxslt-dev \t\tlibyaml-dev \t\tmake \t\tpatch \t\tunzip \t\txz-utils \t\tzlib1g-dev \t\t\t\t$( \t\t\tif apt-cache show 'default-libmysqlclient-dev' 2>/dev/null | grep -q '^Version:'; then \t\t\t\techo 'default-libmysqlclient-dev'; \t\t\telse \t\t\t\techo 'libmysqlclient-dev'; \t\t\tfi \t\t) \t; \trm -rf /var/lib/apt/lists/*"
  31. },
  32. {
  33. "size": 0,
  34. "instruction": "ENV PATH=/usr/local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
  35. },
  36. {
  37. "size": 0,
  38. "instruction": "ENV LANG=C.UTF-8"
  39. },
  40. {
  41. "digest": "sha256:8fbed0954073f2a767ffd2fdf466b7033afef5a1cea9af25d0c168759a9a767b",
  42. "size": 6292308,
  43. "instruction": "RUN /bin/sh -c set -eux; \tapt-get update; \tapt-get install -y --no-install-recommends \t\tlibbluetooth-dev \t\ttk-dev \t\tuuid-dev \t; \trm -rf /var/lib/apt/lists/* # buildkit"
  44. },
  45. {
  46. "size": 0,
  47. "instruction": "ENV GPG_KEY=E3FF2839C048B25C084DEBE9B26995E310250568"
  48. },
  49. {
  50. "size": 0,
  51. "instruction": "ENV PYTHON_VERSION=3.9.18"
  52. },
  53. {
  54. "digest": "sha256:a1d2cf3d4b16636cfb04ae5e4e41e86c8267fdc643a9be163b87712271dd5692",
  55. "size": 16083870,
  56. "instruction": "RUN /bin/sh -c set -eux; \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)\"; \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\tbin=\"$(readlink -ve /usr/local/bin/python3)\"; \tdir=\"$(dirname \"$bin\")\"; \tmkdir -p \"/usr/share/gdb/auto-load/$dir\"; \tcp -vL Tools/gdb/libpython.py \"/usr/share/gdb/auto-load/$bin-gdb.py\"; \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\tpython3 --version # buildkit"
  57. },
  58. {
  59. "digest": "sha256:ba37856ec4716104d2380b106a162031a737634c3704761d28b1618cebccaa59",
  60. "size": 245,
  61. "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"
  62. },
  63. {
  64. "size": 0,
  65. "instruction": "ENV PYTHON_PIP_VERSION=23.0.1"
  66. },
  67. {
  68. "size": 0,
  69. "instruction": "ENV PYTHON_SETUPTOOLS_VERSION=58.1.0"
  70. },
  71. {
  72. "size": 0,
  73. "instruction": "ENV PYTHON_GET_PIP_URL=https://github.com/pypa/get-pip/raw/c6add47b0abf67511cdfb4734771cbab403af062/public/get-pip.py"
  74. },
  75. {
  76. "size": 0,
  77. "instruction": "ENV PYTHON_GET_PIP_SHA256=22b849a10f86f5ddf7ce148ca2a31214504ee6c83ef626840fde6e5dcd809d11"
  78. },
  79. {
  80. "digest": "sha256:84f757a3f6d0c50b4ae1818a2740db4ac07c8dfb0c0f78f1114d25438433549b",
  81. "size": 2849121,
  82. "instruction": "RUN /bin/sh -c set -eux; \t\twget -O get-pip.py \"$PYTHON_GET_PIP_URL\"; \techo \"$PYTHON_GET_PIP_SHA256 *get-pip.py\" | sha256sum -c -; \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"
  83. },
  84. {
  85. "size": 0,
  86. "instruction": "CMD [\"python3\"]"
  87. },
  88. {
  89. "digest": "sha256:9c0a33c1d4cf755292cc0be489b3992750ad98d0c77905c09bfb17b3cb14131d",
  90. "size": 7753659,
  91. "instruction": "RUN /bin/sh -c pip3 install --upgrade --no-cache-dir 'cryptography<40' # buildkit"
  92. },
  93. {
  94. "digest": "sha256:c153dd4d18011f66db839155f3beccb75db671ee1ffc6f022d5daf8fe705aa59",
  95. "size": 12347508,
  96. "instruction": "RUN /bin/sh -c pip3 install --upgrade --no-cache-dir yt-dlp requests # buildkit"
  97. },
  98. {
  99. "digest": "sha256:9f10f0528f202229cf372e0e66035da5f47a66880f88c50300704d4f966d7d8d",
  100. "size": 926157,
  101. "instruction": "RUN /bin/sh -c pip3 install --upgrade --no-cache-dir https://github.com/TheTechRobo/chat-downloader/archive/refs/heads/master.zip # buildkit"
  102. },
  103. {
  104. "digest": "sha256:e73d0b20391ac5c2bd2c7d1afb6b756591b97c04467fde0647e5c052cd38eb41",
  105. "size": 1588362,
  106. "instruction": "RUN /bin/sh -c pip3 install --upgrade --no-cache-dir websocket-client warcprox # buildkit"
  107. },
  108. {
  109. "digest": "sha256:925b76751d29d8237bca10d70c3eb894aa1fd0aa5f68fabac1a7d0f0cf540698",
  110. "size": 63310,
  111. "instruction": "RUN /bin/sh -c pip3 install --upgrade --no-cache-dir typing-extensions # buildkit"
  112. },
  113. {
  114. "digest": "sha256:13fb70f993d04a8298709a22085180fbb9146bcd3acd9b2ae106ba6284405af6",
  115. "size": 94,
  116. "instruction": "RUN /bin/sh -c mkdir -p /data # buildkit"
  117. },
  118. {
  119. "size": 0,
  120. "instruction": "ENV DATA_DIR=/data"
  121. },
  122. {
  123. "size": 0,
  124. "instruction": "ENV CURL_CA_BUNDLE="
  125. },
  126. {
  127. "digest": "sha256:16a9217b748659734f8a86cf9567b742b4e0527642a33052ccb861298bec1441",
  128. "size": 87393,
  129. "instruction": "COPY . /app # buildkit"
  130. },
  131. {
  132. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  133. "size": 32,
  134. "instruction": "WORKDIR /app"
  135. },
  136. {
  137. "size": 0,
  138. "instruction": "ENTRYPOINT [\"python3\" \"-u\" \"client.py\"]"
  139. }
  140. ],
  141. "os": "linux",
  142. "os_features": null,
  143. "os_version": null,
  144. "size": 370289488,
  145. "status": "active",
  146. "last_pulled": "2023-10-22T20:54:44.16378Z",
  147. "last_pushed": "2023-10-22T20:37:47.959083Z"
  148. },
  149. {
  150. "architecture": "unknown",
  151. "features": null,
  152. "variant": null,
  153. "digest": "sha256:797841166194faf18c694912bba88a54860488b2767534078f78ebadb0d54f24",
  154. "os": "unknown",
  155. "os_features": null,
  156. "os_version": null,
  157. "size": 1154,
  158. "status": "active",
  159. "last_pulled": null,
  160. "last_pushed": "2023-10-22T20:37:48.153667Z"
  161. }
  162. ]