Namespace
codeclimate
Image / Tag
codeclimate-eslint:b1500
Content Digest
sha256:aea44c60cb3134a382deee47e34991eecff90ce919651bd9b44a29423b3f9bda
Details
Created

2022-01-21 15:34:37 UTC

Size

141 MB

Content Digest
Labels
  • maintainer
    Code Climate <hello@codeclimate.com>

Environment
NODE_VERSION

17.3.1

PATH

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

YARN_VERSION

1.22.17


Layers

[#000] sha256:a2abf6c4d29d43a4bf9fbb769f524d0fb36a2edab49819c1bf3e76f409f953ea - 21.28% (29.9 MB)

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

[#002] sha256:fe6faad74785b4f26af8c8ad36867b6411580b4924a37ee5e1c253bc0ede1552 - 30.5% (42.9 MB)

[#003] sha256:210ec5508c76324c875c1e219b81fb05f83296a995f8a991b891ecb16160dd68 - 1.87% (2.63 MB)

[#004] sha256:c0598cf3675c3f38383262ad9194a97f3488ed509fb4feafc53c0409444bfb4e - 0.0% (453 Bytes)

[#005] sha256:e9dd6d76927f188691afcd0a20d845ff93c84caeba7bb3b0b42de7d71987caaf - 0.0% (133 Bytes)

[#006] sha256:a6da33734e113a70f53319b9bba00fab7c2fc6e4febcc6716dc9aa475d4f3065 - 0.01% (11.8 KB)

[#007] sha256:2b71ab274444f8e5eda5698b5dc91687c35cfecea71cec895448bfb19b7f9e8c - 12.35% (17.4 MB)

[#008] sha256:1f7ab83d81634b628f31fdb0836c907022e42dfadfedee69380e8af95d960039 - 17.47% (24.6 MB)

[#009] sha256:3b50b8594df59cb5cf9e55886437ddfe5061f3d8788d521d8bbfa4e0aa68afc8 - 0.0% (6.67 KB)

[#010] sha256:55dc74356ad0fb6f8497847e52d9728ea69e33569c23493069d001d80c5c2f71 - 6.83% (9.6 MB)

[#011] sha256:c409dd99c495c55787af8c9fadb6ab17dc528903e55b9b075357cecec63c006b - 9.68% (13.6 MB)

[#012] sha256:e90bb93b7c77f5e7e7f76444aac279f837eabb79c1014e5f4d5f5bc7c2b8dcdf - 0.0% (93 Bytes)


History
2021-12-21 01:22:43 UTC

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

2021-12-21 01:22:43 UTC

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

2021-12-21 18:45:17 UTC

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

2022-01-11 21:04:13 UTC

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

2022-01-11 21:04:54 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 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 74F12602B6F1C4E913FAA37AD3A89613643B6201 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 C82FA3AE1CBEDC6BE46B9360C43CEC45C17AB93C DD8F2338BAE7501E3DD5AC78C273792F7D83545D A48C2BEE680E841632CD4E44F07496B3EB3C1762 108F52B48DB57BB0CC439B2997B01419BD92F80A B9E2F5981AA6E0CD28160D9FF13993A75599653C ; 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 '/=>/ { print $(NF-1) }' | 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

2022-01-11 21:04:55 UTC

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

2022-01-11 21:05:20 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 '/=>/ { print $(NF-1) }' | 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

2022-01-11 21:05:21 UTC

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

2022-01-11 21:05:21 UTC

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

2022-01-11 21:05:21 UTC

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

2022-01-20 17:27:29 UTC

/bin/sh -c #(nop) LABEL maintainer=Code Climate <hello@codeclimate.com>

2022-01-21 15:33:32 UTC

/bin/sh -c #(nop) WORKDIR /usr/src/app

2022-01-21 15:33:32 UTC

/bin/sh -c #(nop) COPY multi:0181d963407bf3b05632d8299b6b9ab2c11de97e4b1d08adcdc96075db00bbb3 in /usr/src/app/

2022-01-21 15:33:40 UTC

/bin/sh -c apt-get update && apt-get install -y gnupg

2022-01-21 15:34:18 UTC

/bin/sh -c apt-key adv --fetch-keys http://dl.yarnpkg.com/debian/pubkey.gpg && echo "deb http://nightly.yarnpkg.com/debian/ nightly main" | tee /etc/apt/sources.list.d/yarn-nightly.list && apt-get install -y git jq yarn && yarn install && git clone https://github.com/eslint/eslint.git && ESLINT_DOCS_VERSION=`npm -j ls eslint | jq -r .dependencies.eslint.version` && cd eslint && git checkout v$ESLINT_DOCS_VERSION && cd .. && mkdir -p /usr/src/app/lib/docs/rules/ && cp ./eslint/docs/rules/* /usr/src/app/lib/docs/rules/ && rm -rf eslint && apt-get purge -y git jq && apt-get autoremove -y

2022-01-21 15:34:19 UTC

/bin/sh -c adduser -u 9000 --gecos "" --disabled-password app

2022-01-21 15:34:19 UTC

/bin/sh -c #(nop) COPY dir:331c77792719e987a9ebe201a80230c6bfa967d3e11ffd02eb5a4dafdc271bc3 in /usr/src/app

2022-01-21 15:34:36 UTC

/bin/sh -c chown -R app:app /usr/src/app

2022-01-21 15:34:37 UTC

/bin/sh -c #(nop) USER [app]

2022-01-21 15:34:37 UTC

/bin/sh -c #(nop) VOLUME [/code]

2022-01-21 15:34:37 UTC

/bin/sh -c #(nop) WORKDIR /code

2022-01-21 15:34:37 UTC

/bin/sh -c #(nop) CMD ["/usr/src/app/bin/eslint.js"]

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