Namespace
codeclimate
Image / Tag
codeclimate-rubocop:b594
Content Digest
sha256:c328058e0d0ea5b17fa1734f7d593722cb27189037c73fa19f844b482d05a5db
Details
Created

2019-12-26 17:19:14 UTC

Size

94.5 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.29% (21.1 MB)

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

[#005] sha256:2a12a1d8a0b5b8b8a7a94a91fffe9070e1920ccceda101b336546340b4854206 - 0.0% (132 Bytes)

[#006] sha256:7435bc735888d676177e85e4986b74dd46665a6809b2eceb794ba4eb08a45f36 - 0.0% (1.22 KB)

[#007] sha256:579b7972104da3cd5f0f17c4e7493412e83b28e0548bc307c953cad4c391a930 - 0.0% (1.06 KB)

[#008] sha256:c329a2ce0529b157702a347c0a6f1ddc0871b31741ca289b1ecaef326ac05667 - 73.67% (69.6 MB)

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

[#010] sha256:caccb707e87e96a1e062158c9d08ae5330bdbaf0a8926f78fcc0b654421952e7 - 0.11% (104 KB)

[#011] sha256:f37c8d7eaa2ba110ce50f78f509f6ad11cf53bd21ba6bf42cdb95af53797d935 - 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"]

2019-12-26 17:18:57 UTC

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

2019-12-26 17:18:57 UTC

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

2019-12-26 17:18:58 UTC

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

2019-12-26 17:18:58 UTC

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

2019-12-26 17:19:11 UTC

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

2019-12-26 17:19:11 UTC

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

2019-12-26 17:19:13 UTC

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

2019-12-26 17:19:13 UTC

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

2019-12-26 17:19:13 UTC

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

2019-12-26 17:19:14 UTC

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

2019-12-26 17:19:14 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