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.

167 lines
8.8 KiB

  1. [
  2. {
  3. "architecture": "amd64",
  4. "features": null,
  5. "variant": null,
  6. "digest": "sha256:5615498f6f73ea4c016fbd4ab6025403b42f8bcd5d5eb5efb3504156a197f073",
  7. "layers": [
  8. {
  9. "digest": "sha256:18f2c3b7ca52caba205d748b9ce41784eb010ca83ece9e84e2a09130a5ec3cbc",
  10. "size": 55057340,
  11. "instruction": "ADD file:d3a2f1f42338ba7066e352cea3b7bf4c7576e6b96fef785e8da763114f337c0e in / "
  12. },
  13. {
  14. "size": 0,
  15. "instruction": " CMD [\"bash\"]"
  16. },
  17. {
  18. "digest": "sha256:8988ac7a69cc18b80883227d1cddd6babff98a5fce88b591500f8727dd26ff0d",
  19. "size": 15764812,
  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:d8d278fc41a93b35689afe55f7bbeda81194c3ed9d7162d8adf2ed2af1e042ea",
  24. "size": 54595440,
  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:d5e04794082b8082ce8c158a02cb11d1d737d6c0cd1542062514b3e2a93f6c70",
  29. "size": 196880584,
  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:36b27e6273f7c98a1b411ce4090e965eec8659c8bbe3fa18bf400527f9e3ef0f",
  42. "size": 6292361,
  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:597f9d0304c59512f4d2df24178eae7057e26863300b8411ef14d0f603bf1ef0",
  55. "size": 16084353,
  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:37be20a77a031313ab9f13715605c8ff70b30e9a4ef8e5855434a3f8aed90d93",
  60. "size": 243,
  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/4cfa4081d27285bda1220a62a5ebf5b4bd749cdb/public/get-pip.py"
  74. },
  75. {
  76. "size": 0,
  77. "instruction": "ENV PYTHON_GET_PIP_SHA256=9cc01665956d22b3bf057ae8287b035827bfd895da235bcea200ab3b811790b6"
  78. },
  79. {
  80. "digest": "sha256:151498141bb215dceca7694ee56f631b614e0febbeadf5b7a1f0234ef2ea46d2",
  81. "size": 2849521,
  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:27c61e13b43dbd63ba8c680868c3adb3079046185c64ab176d916689702077a9",
  90. "size": 7753511,
  91. "instruction": "RUN /bin/sh -c pip3 install --upgrade --no-cache-dir 'cryptography<40' # buildkit"
  92. },
  93. {
  94. "digest": "sha256:25d2a74c13fbfdc5ccb0f7fb23c41996ce2325fe0f72647ebe536160cb646e05",
  95. "size": 12375801,
  96. "instruction": "RUN /bin/sh -c pip3 install --no-cache-dir yt-dlp requests # buildkit"
  97. },
  98. {
  99. "digest": "sha256:d5ac16b853feb7c2c6b4d47b4a13c181a02dea6ef7b337ba5910edec6583b263",
  100. "size": 928882,
  101. "instruction": "RUN /bin/sh -c pip3 install --no-cache-dir https://github.com/TheTechRobo/chat-downloader/archive/refs/heads/master.zip # buildkit"
  102. },
  103. {
  104. "digest": "sha256:464496ad862fdefd6b6d377106fbf736e7e8f27fe1034f781bbabcf6082a9484",
  105. "size": 6178077,
  106. "instruction": "RUN /bin/sh -c pip3 install --no-cache-dir websocket-client warcprox # buildkit"
  107. },
  108. {
  109. "digest": "sha256:c103d11f808070200d5331d12e64108d03a7801fdfab380819c6eda9ca069e82",
  110. "size": 65749,
  111. "instruction": "RUN /bin/sh -c pip3 install --no-cache-dir typing-extensions # buildkit"
  112. },
  113. {
  114. "digest": "sha256:c2cbe3f86938dc76d3a743cd663680f33f5f4dbc54691beaca34dd05546900ff",
  115. "size": 4427512,
  116. "instruction": "RUN /bin/sh -c pip3 install --upgrade --no-cache-dir 'cryptography<40' # buildkit"
  117. },
  118. {
  119. "digest": "sha256:fdd0779c2868a7ed04e2380cef96fe865a6dff2232b919c0d091644d49bb0033",
  120. "size": 94,
  121. "instruction": "RUN /bin/sh -c mkdir -p /data # buildkit"
  122. },
  123. {
  124. "size": 0,
  125. "instruction": "ENV DATA_DIR=/data"
  126. },
  127. {
  128. "size": 0,
  129. "instruction": "ENV CURL_CA_BUNDLE="
  130. },
  131. {
  132. "digest": "sha256:cc1e0280bc0c071c064c496e9c1c0b9ea68d197eaf20ca3ed2d7fc86ecfd88a2",
  133. "size": 89082,
  134. "instruction": "COPY . /app # buildkit"
  135. },
  136. {
  137. "digest": "sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1",
  138. "size": 32,
  139. "instruction": "WORKDIR /app"
  140. },
  141. {
  142. "size": 0,
  143. "instruction": "ENTRYPOINT [\"python3\" \"-u\" \"client.py\"]"
  144. }
  145. ],
  146. "os": "linux",
  147. "os_features": null,
  148. "os_version": null,
  149. "size": 379343394,
  150. "status": "inactive",
  151. "last_pulled": "2023-12-30T17:40:56.092358Z",
  152. "last_pushed": "2023-12-30T17:39:24.578457Z"
  153. },
  154. {
  155. "architecture": "unknown",
  156. "features": null,
  157. "variant": null,
  158. "digest": "sha256:d9ec479422295947837798ea71cb26708cb63e122f0f30643e55fb0485c0daa8",
  159. "os": "unknown",
  160. "os_features": null,
  161. "os_version": null,
  162. "size": 1154,
  163. "status": "inactive",
  164. "last_pulled": null,
  165. "last_pushed": "2023-12-30T17:39:24.739127Z"
  166. }
  167. ]