Namespace
codeclimate
Image / Tag
codeclimate-rubocop:rubocop-0-76-airbnb
Content Digest
sha256:38bcdb1f56710debdeab43070df0503b59a65e4542296fa4dade8eb74971cc48
Details
Created

2020-10-29 14:10:51 UTC

Size

94.6 MB

Content Digest
Labels
  • name
    Ruby-2.6
  • version
    1.0

Environment
BUNDLE_APP_CONFIG

/usr/local/bundle

BUNDLE_PATH

/usr/local/bundle

BUNDLE_SILENCE_ROOT_WARNING

1

GEM_HOME

/usr/local/bundle

PATH

/usr/local/bundle/bin:/usr/local/bundle/gems/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

RUBY_DOWNLOAD_SHA256

11a83f85c03d3f0fc9b8a9b6cad1b2674f26c5aaa43ba858d4b0fcc2b54171e1

RUBY_MAJOR

2.6

RUBY_VERSION

2.6.3


Layers

[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 2.78% (2.63 MB)

[#001] sha256:622c94c90cb16cee45cb63da0b905ead12c0d80c5acb5851f1fee113491f00d9 - 1.04% (1010 KB)

[#002] sha256:dbd6b8b21943d05e0a1109eab5c308587942f4c647b857f1a36934bcb5b6a070 - 0.0% (201 Bytes)

[#003] sha256:10dd230dd590485419f3b5d8b09a99f196bd4d15f3fe719f269e1febcd2df877 - 22.27% (21.1 MB)

[#004] sha256:cdaad85321f32c35af2267ddc3ade07364960287c9284ca0974d95e7fba7b9e9 - 0.0% (139 Bytes)

[#005] sha256:4499e40853bee844211c25b7aded3d9916f9ce4fa396f45998467a152d61117f - 0.0% (132 Bytes)

[#006] sha256:e6ccd12c5589649df0fdadadf13991fa6470a4a0518a4f75a52922d44dc09b2c - 0.0% (1.23 KB)

[#007] sha256:e1234056031090a566058abe8497c2bef51b71054c41bf4700320d1a1ad6f68c - 0.0% (1.12 KB)

[#008] sha256:287da39b1206e4fcb982f590ee7130c6bf6d01e3cdbc3618a75a22e2da4ee587 - 73.69% (69.7 MB)

[#009] sha256:e450af3cb88b18ec08e8a372dd63a88b11d91fb1fe7ec3443da7662ef845437c - 0.11% (104 KB)

[#010] sha256:41759ce3239f08a25ee0d93045e27ca2a55984673e572e9cfc80927b7b9ce625 - 0.11% (105 KB)

[#011] sha256:9f8467807fe68d939dd6364bc0f4322afef3bc86ee0add8a17e13dce6835dca7 - 0.0% (93 Bytes)


History
2019-05-11 00:07:03 UTC

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

2019-05-11 00:07:03 UTC

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

2019-05-11 03:26:41 UTC

/bin/sh -c apk add --no-cache gmp-dev

2019-06-27 23:14:34 UTC

/bin/sh -c set -eux; mkdir -p /usr/local/etc; { echo 'install: --no-document'; echo 'update: --no-document'; } >> /usr/local/etc/gemrc

2019-06-27 23:14:34 UTC

/bin/sh -c #(nop) ENV RUBY_MAJOR=2.6

2019-06-27 23:14:35 UTC

/bin/sh -c #(nop) ENV RUBY_VERSION=2.6.3

2019-06-27 23:14:35 UTC

/bin/sh -c #(nop) ENV RUBY_DOWNLOAD_SHA256=11a83f85c03d3f0fc9b8a9b6cad1b2674f26c5aaa43ba858d4b0fcc2b54171e1

2019-06-27 23:20:25 UTC

/bin/sh -c set -eux; apk add --no-cache --virtual .ruby-builddeps autoconf bison bzip2 bzip2-dev ca-certificates coreutils dpkg-dev dpkg gcc gdbm-dev glib-dev libc-dev libffi-dev libxml2-dev libxslt-dev linux-headers make ncurses-dev openssl openssl-dev procps readline-dev ruby tar xz yaml-dev zlib-dev ; wget -O ruby.tar.xz "https://cache.ruby-lang.org/pub/ruby/${RUBY_MAJOR%-rc}/ruby-$RUBY_VERSION.tar.xz"; echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.xz" | sha256sum --check --strict; mkdir -p /usr/src/ruby; tar -xJf ruby.tar.xz -C /usr/src/ruby --strip-components=1; rm ruby.tar.xz; cd /usr/src/ruby; wget -O 'thread-stack-fix.patch' 'https://bugs.ruby-lang.org/attachments/download/7081/0001-thread_pthread.c-make-get_main_stack-portable-on-lin.patch'; echo '3ab628a51d92fdf0d2b5835e93564857aea73e0c1de00313864a94a6255cb645 *thread-stack-fix.patch' | sha256sum --check --strict; patch -p1 -i thread-stack-fix.patch; rm thread-stack-fix.patch; { echo '#define ENABLE_PATH_CHECK 0'; echo; cat file.c; } > file.c.new; mv file.c.new file.c; autoconf; gnuArch="$(dpkg-architecture --query DEB_BUILD_GNU_TYPE)"; export ac_cv_func_isnan=yes ac_cv_func_isinf=yes; ./configure --build="$gnuArch" --disable-install-doc --enable-shared ; make -j "$(nproc)"; make install; runDeps="$( scanelf --needed --nobanner --format '%n#p' --recursive /usr/local | tr ',' '\n' | sort -u | awk 'system("[ -e /usr/local/lib/" $1 " ]") == 0 { next } { print "so:" $1 }' )"; apk add --no-network --virtual .ruby-rundeps $runDeps bzip2 ca-certificates libffi-dev procps yaml-dev zlib-dev ; apk del --no-network .ruby-builddeps; cd /; rm -r /usr/src/ruby; ! apk --no-network list --installed | grep -v '^[.]ruby-rundeps' | grep -i ruby ; [ "$(command -v ruby)" = '/usr/local/bin/ruby' ]; ruby --version; gem --version; bundle --version

2019-06-27 23:20:25 UTC

/bin/sh -c #(nop) ENV GEM_HOME=/usr/local/bundle

2019-06-27 23:20:25 UTC

/bin/sh -c #(nop) ENV BUNDLE_PATH=/usr/local/bundle BUNDLE_SILENCE_ROOT_WARNING=1 BUNDLE_APP_CONFIG=/usr/local/bundle

2019-06-27 23:20:25 UTC

/bin/sh -c #(nop) ENV PATH=/usr/local/bundle/bin:/usr/local/bundle/gems/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

2019-06-27 23:20:27 UTC

/bin/sh -c mkdir -p "$GEM_HOME" && chmod 777 "$GEM_HOME"

2019-06-27 23:20:27 UTC

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

2020-10-29 14:10:35 UTC

/bin/sh -c #(nop) LABEL name=Ruby-2.6 version=1.0

2020-10-29 14:10:35 UTC

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

2020-10-29 14:10:36 UTC

/bin/sh -c adduser -u 9000 -D app

2020-10-29 14:10:36 UTC

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

2020-10-29 14:10:48 UTC

/bin/sh -c apk add --update build-base git && gem install bundler -v 2.0.2 && bundle install --quiet -j 4 && chown -R app:app /usr/local/bundle && rm -fr ~/.gem ~/.bundle ~/.wh..gem && gem cleanup

2020-10-29 14:10:48 UTC

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

2020-10-29 14:10:50 UTC

/bin/sh -c chown -R app:app .

2020-10-29 14:10:50 UTC

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

2020-10-29 14:10:50 UTC

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

2020-10-29 14:10:50 UTC

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

2020-10-29 14:10:51 UTC

/bin/sh -c #(nop) CMD ["/usr/src/app/bin/codeclimate-rubocop"]

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