Namespace
diygod
Image / Tag
rsshub:2023-07-12
Content Digest
sha256:40d37854029535379200e6083fe8fb436ad3f5c80a3f1548c5797503e706b6b9
Details
Created

2023-07-12 14:28:14 UTC

Size

90.5 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.created
    2023-07-12T14:25:38.422Z
  • org.opencontainers.image.description
    🍰 Everything is RSSible
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    c7d93dc4dfa4d8240fa17feec130e489ba443e02
  • org.opencontainers.image.source
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.title
    RSSHub
  • org.opencontainers.image.url
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.version
    latest

Environment
NODE_ENV

production

NODE_VERSION

18.16.1

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TZ

Asia/Shanghai

YARN_VERSION

1.22.19


Layers

[#000] sha256:9d21b12d5fab9ab82969054d72411ce627c209257df64b6057016c981e163c30 - 33.12% (30 MB)

[#001] sha256:ce632e02ef79b37d13e7cd09974da7331f9c3a6bb04e091d829acc1ae80f62ae - 0.0% (4.08 KB)

[#002] sha256:1e32e4254dda27d760066ea037cfb6536fe0ea107dca0b126f2df81104e5d49a - 48.51% (43.9 MB)

[#003] sha256:b4669b6afd099cee895c3faefaf5e504cf611eaa6bf4d6cbe9e5b486aca0607f - 2.91% (2.64 MB)

[#004] sha256:839e5157ae889af7b0d4e0496dc8eba35174584c792f7342b5a4ffcff4549484 - 0.0% (451 Bytes)

[#005] sha256:1056a0f077c5258ba948d652d14bd0ed1e22b4e2a74045e361db1a0f24800aa2 - 0.0% (93 Bytes)

[#006] sha256:95d9c010998e20119b0cc35e6e84ab60c0b4b2da8733f590a17f01b526e5fca7 - 0.07% (66.5 KB)

[#007] sha256:bd30548fa40004ae571e4923e19b70fbc39817e90c1732fc5ef77007ef595ba0 - 0.0% (163 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#009] sha256:dc118058b12ad06af869ec1f1333f154ffbc678fb5ffdb917e1215023a1f22e4 - 15.38% (13.9 MB)


History
2023-07-04 01:20:23 UTC

/bin/sh -c #(nop) ADD file:4a063d4e089ef10c6806d7042a0040078674ac2db61df02df8bbb8fa4894910a in /

2023-07-04 01:20:23 UTC

/bin/sh -c #(nop) CMD ["bash"]

2023-07-04 17:30:06 UTC

/bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node

2023-07-04 17:33:17 UTC

/bin/sh -c #(nop) ENV NODE_VERSION=18.16.1

2023-07-04 17:33:41 UTC

/bin/sh -c ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) echo "unsupported architecture"; exit 1 ;; esac && set -ex && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr xz-utils libatomic1 --no-install-recommends && rm -rf /var/lib/apt/lists/* && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 141F07595B7B3FFE74309A937405533BE57C7D57 74F12602B6F1C4E913FAA37AD3A89613643B6201 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 61FC681DFB92A079F1685E77973F295594EC4689 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && ln -s /usr/local/bin/node /usr/local/bin/nodejs && node --version && npm --version

2023-07-04 17:33:42 UTC

/bin/sh -c #(nop) ENV YARN_VERSION=1.22.19

2023-07-04 17:33:53 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr --no-install-recommends && rm -rf /var/lib/apt/lists/* && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && apt-mark auto '.*' > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; } && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && yarn --version

2023-07-04 17:33:53 UTC

/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/

2023-07-04 17:33:53 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-07-04 17:33:53 UTC

/bin/sh -c #(nop) CMD ["node"]

2023-07-05 05:29:48 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.authors=https://github.com/DIYgod/RSSHub

2023-07-05 05:29:48 UTC (buildkit.dockerfile.v0)

ENV NODE_ENV=production

2023-07-05 05:29:48 UTC (buildkit.dockerfile.v0)

ENV TZ=Asia/Shanghai

2023-07-05 05:29:48 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2023-07-05 05:29:48 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM

2023-07-05 05:29:48 UTC (buildkit.dockerfile.v0)

ARG PUPPETEER_SKIP_DOWNLOAD=1

2023-07-05 05:30:04 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETPLATFORM=linux/amd64 PUPPETEER_SKIP_DOWNLOAD=1 /bin/sh -c set -ex && apt-get update && apt-get install -yq --no-install-recommends dumb-init ; if [ "$PUPPETEER_SKIP_DOWNLOAD" = 0 ]; then if [ "$TARGETPLATFORM" = 'linux/amd64' ]; then apt-get install -yq --no-install-recommends ca-certificates fonts-liberation wget xdg-utils libasound2 libatk-bridge2.0-0 libatk1.0-0 libatspi2.0-0 libcairo2 libcups2 libdbus-1-3 libdrm2 libexpat1 libgbm1 libglib2.0-0 libnspr4 libnss3 libpango-1.0-0 libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxkbcommon0 libxrandr2 ; else apt-get install -yq --no-install-recommends chromium && echo 'CHROMIUM_EXECUTABLE_PATH=chromium' | tee /app/.env ; fi; fi; rm -rf /var/lib/apt/lists/* # buildkit

2023-07-05 05:30:05 UTC (buildkit.dockerfile.v0)

COPY /app/node_modules/.cache/puppeteer /app/node_modules/.cache/puppeteer # buildkit

2023-07-04 12:49:03 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETPLATFORM=linux/amd64 PUPPETEER_SKIP_DOWNLOAD=1 /bin/sh -c set -x && if [ "$PUPPETEER_SKIP_DOWNLOAD" = 0 ] && [ "$TARGETPLATFORM" = 'linux/amd64' ]; then echo 'Verifying Chromium installation...' && ldd $(find /app/node_modules/.cache/puppeteer/ -name chrome -type f) | grep "not found" ; if [ "$?" = 0 ]; then echo "!!! Chromium has unmet shared libs !!!" && exit 1 ; else echo "Awesome! All shared libs are met!" ; fi; fi; # buildkit

2023-07-12 14:28:14 UTC (buildkit.dockerfile.v0)

COPY /app /app # buildkit

2023-07-12 14:28:14 UTC (buildkit.dockerfile.v0)

EXPOSE map[1200/tcp:{}]

2023-07-12 14:28:14 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["dumb-init" "--"]

2023-07-12 14:28:14 UTC (buildkit.dockerfile.v0)

CMD ["npm" "run" "start"]

Details
Created

2023-07-12 14:33:27 UTC

Size

81.7 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.created
    2023-07-12T14:25:38.422Z
  • org.opencontainers.image.description
    🍰 Everything is RSSible
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    c7d93dc4dfa4d8240fa17feec130e489ba443e02
  • org.opencontainers.image.source
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.title
    RSSHub
  • org.opencontainers.image.url
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.version
    latest

Environment
NODE_ENV

production

NODE_VERSION

18.16.1

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TZ

Asia/Shanghai

YARN_VERSION

1.22.19


Layers

[#000] sha256:d9e6a8b782e380f447723ac26499c5014f2d383b9210819b9e73e97abaf81249 - 31.02% (25.3 MB)

[#001] sha256:a1879d51790e7c56b0dc2c1b27156b4f08cda1602adafcba56db830416285640 - 0.0% (4.07 KB)

[#002] sha256:38e5440a050f6450d88089eef4eee3c4264c24b5303ac0caab78d00d470cf444 - 49.76% (40.7 MB)

[#003] sha256:f67cc2bb04f18a113420aa04bcba7bb74de96fea3779b4604b1ca4f89cbeca0b - 3.21% (2.63 MB)

[#004] sha256:090b96602da54cd1178a151ead9d371cc986d27b30a7813917659ee7bb169344 - 0.0% (449 Bytes)

[#005] sha256:12262cdc818f04b302cada13cfcfb8baf0b36f8dabb906f29254dc21a2345917 - 0.0% (93 Bytes)

[#006] sha256:b7136916420b854b347987f59abfba6d63b01f65ddf5b4a298070295d9722353 - 0.08% (65.9 KB)

[#007] sha256:189b06dd4f2fffca3dcdacd05134ed62531d3787fa4b888410d33984968b5fd2 - 0.0% (164 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#009] sha256:aa5d3c9dec60ba81206824b2b97915af79f1dd832427dd196e11bbcc06aa2477 - 15.93% (13 MB)


History
2023-07-04 00:58:20 UTC

/bin/sh -c #(nop) ADD file:c023c66ee4b7cdae5c542f2ad2dd35aef94ad24e1b3b479a16538c46013ae6a5 in /

2023-07-04 00:58:21 UTC

/bin/sh -c #(nop) CMD ["bash"]

2023-07-04 05:18:04 UTC

/bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node

2023-07-04 05:22:10 UTC

/bin/sh -c #(nop) ENV NODE_VERSION=18.16.1

2023-07-04 05:22:34 UTC

/bin/sh -c ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) echo "unsupported architecture"; exit 1 ;; esac && set -ex && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr xz-utils libatomic1 --no-install-recommends && rm -rf /var/lib/apt/lists/* && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 141F07595B7B3FFE74309A937405533BE57C7D57 74F12602B6F1C4E913FAA37AD3A89613643B6201 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 61FC681DFB92A079F1685E77973F295594EC4689 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && ln -s /usr/local/bin/node /usr/local/bin/nodejs && node --version && npm --version

2023-07-04 05:22:35 UTC

/bin/sh -c #(nop) ENV YARN_VERSION=1.22.19

2023-07-04 05:22:46 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr --no-install-recommends && rm -rf /var/lib/apt/lists/* && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && apt-mark auto '.*' > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; } && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && yarn --version

2023-07-04 05:22:46 UTC

/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/

2023-07-04 05:22:47 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-07-04 05:22:47 UTC

/bin/sh -c #(nop) CMD ["node"]

2023-07-04 12:46:50 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.authors=https://github.com/DIYgod/RSSHub

2023-07-04 12:46:50 UTC (buildkit.dockerfile.v0)

ENV NODE_ENV=production

2023-07-04 12:46:50 UTC (buildkit.dockerfile.v0)

ENV TZ=Asia/Shanghai

2023-07-04 12:46:50 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2023-07-04 12:46:50 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM

2023-07-04 12:46:50 UTC (buildkit.dockerfile.v0)

ARG PUPPETEER_SKIP_DOWNLOAD=1

2023-07-04 12:49:03 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETPLATFORM=linux/arm/v7 PUPPETEER_SKIP_DOWNLOAD=1 /bin/sh -c set -ex && apt-get update && apt-get install -yq --no-install-recommends dumb-init ; if [ "$PUPPETEER_SKIP_DOWNLOAD" = 0 ]; then if [ "$TARGETPLATFORM" = 'linux/amd64' ]; then apt-get install -yq --no-install-recommends ca-certificates fonts-liberation wget xdg-utils libasound2 libatk-bridge2.0-0 libatk1.0-0 libatspi2.0-0 libcairo2 libcups2 libdbus-1-3 libdrm2 libexpat1 libgbm1 libglib2.0-0 libnspr4 libnss3 libpango-1.0-0 libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxkbcommon0 libxrandr2 ; else apt-get install -yq --no-install-recommends chromium && echo 'CHROMIUM_EXECUTABLE_PATH=chromium' | tee /app/.env ; fi; fi; rm -rf /var/lib/apt/lists/* # buildkit

2023-07-04 12:49:03 UTC (buildkit.dockerfile.v0)

COPY /app/node_modules/.cache/puppeteer /app/node_modules/.cache/puppeteer # buildkit

2023-07-04 12:49:03 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETPLATFORM=linux/arm/v7 PUPPETEER_SKIP_DOWNLOAD=1 /bin/sh -c set -x && if [ "$PUPPETEER_SKIP_DOWNLOAD" = 0 ] && [ "$TARGETPLATFORM" = 'linux/amd64' ]; then echo 'Verifying Chromium installation...' && ldd $(find /app/node_modules/.cache/puppeteer/ -name chrome -type f) | grep "not found" ; if [ "$?" = 0 ]; then echo "!!! Chromium has unmet shared libs !!!" && exit 1 ; else echo "Awesome! All shared libs are met!" ; fi; fi; # buildkit

2023-07-12 14:33:27 UTC (buildkit.dockerfile.v0)

COPY /app /app # buildkit

2023-07-12 14:33:27 UTC (buildkit.dockerfile.v0)

EXPOSE map[1200/tcp:{}]

2023-07-12 14:33:27 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["dumb-init" "--"]

2023-07-12 14:33:27 UTC (buildkit.dockerfile.v0)

CMD ["npm" "run" "start"]

Details
Created

2023-07-12 14:54:23 UTC

Size

88.4 MB

Content Digest
Labels
  • org.opencontainers.image.authors
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.created
    2023-07-12T14:25:38.422Z
  • org.opencontainers.image.description
    🍰 Everything is RSSible
  • org.opencontainers.image.licenses
    MIT
  • org.opencontainers.image.revision
    c7d93dc4dfa4d8240fa17feec130e489ba443e02
  • org.opencontainers.image.source
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.title
    RSSHub
  • org.opencontainers.image.url
    https://github.com/DIYgod/RSSHub
  • org.opencontainers.image.version
    latest

Environment
NODE_ENV

production

NODE_VERSION

18.16.1

PATH

/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

TZ

Asia/Shanghai

YARN_VERSION

1.22.19


Layers

[#000] sha256:50eb042e2421869704212f3e076e9088033eb9a5254341fb1b3022e6e2784921 - 32.43% (28.7 MB)

[#001] sha256:ffdb5709a7795f53ce4ede54f5e72dbe08e8ff168bfb9091d6b91b9efd378b71 - 0.0% (4.09 KB)

[#002] sha256:f7bcf58bb3ca79c330a96601db71d578668577f77eec0169bddf4ecf5be07b8b - 49.71% (44 MB)

[#003] sha256:c79606f58b39b7b95c0eefffa97b047ae6348fa8d4cceac1a35befb6b160709a - 2.98% (2.64 MB)

[#004] sha256:ceb4dcd7a1ce389c6a035033eaad7d49b39548fb14560faff74939acaff019ce - 0.0% (449 Bytes)

[#005] sha256:8ba26d4cc523a25a281416f60941728852961afca8e5645de4a06a0bbbb4937f - 0.0% (92 Bytes)

[#006] sha256:a4cea034ceb01e4b357c353cb9ba4b7e8ae98e872947cf8410c58ed14fd04d4a - 0.07% (66.4 KB)

[#007] sha256:a720ac4bdb0b7279fa4199743c6ed92d8a3da31392d092645f328115aafcc74a - 0.0% (165 Bytes)

[#008] sha256:4f4fb700ef54461cfa02571ae0db9a0dc1e0cdb5577484a6d75e68dc38e8acc1 - 0.0% (32 Bytes)

[#009] sha256:d078598b71e17f54920bda370dbdb762b222ac19c033f72577a76e90b140ce4f - 14.81% (13.1 MB)


History
2023-07-04 01:57:52 UTC

/bin/sh -c #(nop) ADD file:83a81aad5cdb80c654a520d913c8bcafe2b8e1062d81c389d4577cde5ad68167 in /

2023-07-04 01:57:52 UTC

/bin/sh -c #(nop) CMD ["bash"]

2023-07-04 04:12:05 UTC

/bin/sh -c groupadd --gid 1000 node && useradd --uid 1000 --gid node --shell /bin/bash --create-home node

2023-07-04 04:14:19 UTC

/bin/sh -c #(nop) ENV NODE_VERSION=18.16.1

2023-07-04 04:14:40 UTC

/bin/sh -c ARCH= && dpkgArch="$(dpkg --print-architecture)" && case "${dpkgArch##*-}" in amd64) ARCH='x64';; ppc64el) ARCH='ppc64le';; s390x) ARCH='s390x';; arm64) ARCH='arm64';; armhf) ARCH='armv7l';; i386) ARCH='x86';; *) echo "unsupported architecture"; exit 1 ;; esac && set -ex && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr xz-utils libatomic1 --no-install-recommends && rm -rf /var/lib/apt/lists/* && for key in 4ED778F539E3634C779C87C6D7062848A1AB005C 141F07595B7B3FFE74309A937405533BE57C7D57 74F12602B6F1C4E913FAA37AD3A89613643B6201 DD792F5973C6DE52C432CBDAC77ABFA00DDBF2B7 61FC681DFB92A079F1685E77973F295594EC4689 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 890C08DB8579162FEE0DF9DB8BEAB4DFCF555EF4 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C 108F52B48DB57BB0CC439B2997B01419BD92F80A ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-$ARCH.tar.xz" && curl -fsSLO --compressed "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" && gpg --batch --decrypt --output SHASUMS256.txt SHASUMS256.txt.asc && grep " node-v$NODE_VERSION-linux-$ARCH.tar.xz\$" SHASUMS256.txt | sha256sum -c - && tar -xJf "node-v$NODE_VERSION-linux-$ARCH.tar.xz" -C /usr/local --strip-components=1 --no-same-owner && rm "node-v$NODE_VERSION-linux-$ARCH.tar.xz" SHASUMS256.txt.asc SHASUMS256.txt && apt-mark auto '.*' > /dev/null && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && ln -s /usr/local/bin/node /usr/local/bin/nodejs && node --version && npm --version

2023-07-04 04:14:41 UTC

/bin/sh -c #(nop) ENV YARN_VERSION=1.22.19

2023-07-04 04:14:51 UTC

/bin/sh -c set -ex && savedAptMark="$(apt-mark showmanual)" && apt-get update && apt-get install -y ca-certificates curl wget gnupg dirmngr --no-install-recommends && rm -rf /var/lib/apt/lists/* && for key in 6A010C5166006599AA17F08146C2130DFD2497F5 ; do gpg --batch --keyserver hkps://keys.openpgp.org --recv-keys "$key" || gpg --batch --keyserver keyserver.ubuntu.com --recv-keys "$key" ; done && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && curl -fsSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz.asc" && gpg --batch --verify yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && mkdir -p /opt && tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && ln -s /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && ln -s /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && rm yarn-v$YARN_VERSION.tar.gz.asc yarn-v$YARN_VERSION.tar.gz && apt-mark auto '.*' > /dev/null && { [ -z "$savedAptMark" ] || apt-mark manual $savedAptMark > /dev/null; } && find /usr/local -type f -executable -exec ldd '{}' ';' | awk '/=>/ { so = $(NF-1); if (index(so, "/usr/local/") == 1) { next }; gsub("^/(usr/)?", "", so); print so }' | sort -u | xargs -r dpkg-query --search | cut -d: -f1 | sort -u | xargs -r apt-mark manual && apt-get purge -y --auto-remove -o APT::AutoRemove::RecommendsImportant=false && yarn --version

2023-07-04 04:14:51 UTC

/bin/sh -c #(nop) COPY file:4d192565a7220e135cab6c77fbc1c73211b69f3d9fb37e62857b2c6eb9363d51 in /usr/local/bin/

2023-07-04 04:14:51 UTC

/bin/sh -c #(nop) ENTRYPOINT ["docker-entrypoint.sh"]

2023-07-04 04:14:51 UTC

/bin/sh -c #(nop) CMD ["node"]

2023-07-04 12:46:52 UTC (buildkit.dockerfile.v0)

LABEL org.opencontainers.image.authors=https://github.com/DIYgod/RSSHub

2023-07-04 12:46:52 UTC (buildkit.dockerfile.v0)

ENV NODE_ENV=production

2023-07-04 12:46:52 UTC (buildkit.dockerfile.v0)

ENV TZ=Asia/Shanghai

2023-07-04 12:46:52 UTC (buildkit.dockerfile.v0)

WORKDIR /app

2023-07-04 12:46:52 UTC (buildkit.dockerfile.v0)

ARG TARGETPLATFORM

2023-07-04 12:46:52 UTC (buildkit.dockerfile.v0)

ARG PUPPETEER_SKIP_DOWNLOAD=1

2023-07-04 12:48:59 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETPLATFORM=linux/arm64 PUPPETEER_SKIP_DOWNLOAD=1 /bin/sh -c set -ex && apt-get update && apt-get install -yq --no-install-recommends dumb-init ; if [ "$PUPPETEER_SKIP_DOWNLOAD" = 0 ]; then if [ "$TARGETPLATFORM" = 'linux/amd64' ]; then apt-get install -yq --no-install-recommends ca-certificates fonts-liberation wget xdg-utils libasound2 libatk-bridge2.0-0 libatk1.0-0 libatspi2.0-0 libcairo2 libcups2 libdbus-1-3 libdrm2 libexpat1 libgbm1 libglib2.0-0 libnspr4 libnss3 libpango-1.0-0 libx11-6 libxcb1 libxcomposite1 libxdamage1 libxext6 libxfixes3 libxkbcommon0 libxrandr2 ; else apt-get install -yq --no-install-recommends chromium && echo 'CHROMIUM_EXECUTABLE_PATH=chromium' | tee /app/.env ; fi; fi; rm -rf /var/lib/apt/lists/* # buildkit

2023-07-04 12:48:59 UTC (buildkit.dockerfile.v0)

COPY /app/node_modules/.cache/puppeteer /app/node_modules/.cache/puppeteer # buildkit

2023-07-04 12:49:03 UTC (buildkit.dockerfile.v0)

RUN |2 TARGETPLATFORM=linux/arm64 PUPPETEER_SKIP_DOWNLOAD=1 /bin/sh -c set -x && if [ "$PUPPETEER_SKIP_DOWNLOAD" = 0 ] && [ "$TARGETPLATFORM" = 'linux/amd64' ]; then echo 'Verifying Chromium installation...' && ldd $(find /app/node_modules/.cache/puppeteer/ -name chrome -type f) | grep "not found" ; if [ "$?" = 0 ]; then echo "!!! Chromium has unmet shared libs !!!" && exit 1 ; else echo "Awesome! All shared libs are met!" ; fi; fi; # buildkit

2023-07-12 14:54:23 UTC (buildkit.dockerfile.v0)

COPY /app /app # buildkit

2023-07-12 14:54:23 UTC (buildkit.dockerfile.v0)

EXPOSE map[1200/tcp:{}]

2023-07-12 14:54:23 UTC (buildkit.dockerfile.v0)

ENTRYPOINT ["dumb-init" "--"]

2023-07-12 14:54:23 UTC (buildkit.dockerfile.v0)

CMD ["npm" "run" "start"]

Danger Zone
Delete Tag

Please be careful as this will not just delete the reference but also the actual content!

For example when you have latest and v1.2.3 both pointing to the same image
the deletion of latest will also permanently remove v1.2.3.

Delete