Namespace
codeclimate
Image / Tag
codeclimate-rubocop:rubocop-1-14-0
Content Digest
sha256:489e2bf2fd9ee32fcb581dfd3bfff79f0d93ff321a49268bd532372026b8d15a
Details
Created

2021-07-05 16:21:27 UTC

Size

98.7 MB

Content Digest
Labels
  • name
    Ruby-2.7
  • version
    1.0

Environment
BUNDLE_APP_CONFIG

/usr/local/bundle

BUNDLE_SILENCE_ROOT_WARNING

1

GEM_HOME

/usr/local/bundle

LANG

C.UTF-8

PATH

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

RUBY_DOWNLOAD_SHA256

1b95ab193cc8f5b5e59d2686cb3d5dcf1ddf2a86cb6950e0b4bdaae5040ec0d6

RUBY_MAJOR

2.7

RUBY_VERSION

2.7.2


Layers

[#000] sha256:0a6724ff3fcd51338afdfdc2b1d4ffd04569818e31efad957213d67c29b45101 - 2.72% (2.68 MB)

[#001] sha256:dac597affe204b012db965ae97c5ac133819ec2fdd7c0847a41c976fae919683 - 1.1% (1.08 MB)

[#002] sha256:9e2877e2a04786e33c2a6e54226bcf38e83a296e16d1a154066a1cc183f37d1a - 0.0% (197 Bytes)

[#003] sha256:3b12aba1d7feace81058d7720b063ad342b5db3c5903acf137fe57abe7d099a8 - 22.46% (22.2 MB)

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

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

[#006] sha256:cae86acdc0788bd20bb52abf1e66854e6e86867dd1664dc02669fbe0fa319cc2 - 0.0% (1.2 KB)

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

[#008] sha256:14482a70077f5c3d3a67dfe416d44646743df0251c8696f9375a9dc91d21c518 - 73.45% (72.5 MB)

[#009] sha256:da88b1a6d18380a2b7cb0e93f2f4a7d27d81610a0eb93adf1d078984e6187a7f - 0.13% (135 KB)

[#010] sha256:290dd90883b1170d2c300e47944b6458b6c06af487032eea828debf3d2de2228 - 0.13% (135 KB)

[#011] sha256:7b9d280a2fe9c14bd3332bf293f10ed7197337f5b0c3d431636899bfe5724681 - 0.0% (93 Bytes)


History
2020-12-17 00:19:49 UTC

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

2020-12-17 00:19:49 UTC

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

2020-12-17 15:29:18 UTC

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

2020-12-17 15:29:19 UTC

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

2020-12-17 15:29:20 UTC

/bin/sh -c #(nop) ENV LANG=C.UTF-8

2020-12-17 15:29:20 UTC

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

2020-12-17 15:29:20 UTC

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

2020-12-17 15:29:20 UTC

/bin/sh -c #(nop) ENV RUBY_DOWNLOAD_SHA256=1b95ab193cc8f5b5e59d2686cb3d5dcf1ddf2a86cb6950e0b4bdaae5040ec0d6

2020-12-17 15:35:10 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 patch 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

2020-12-17 15:35:10 UTC

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

2020-12-17 15:35:10 UTC

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

2020-12-17 15:35:11 UTC

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

2020-12-17 15:35:12 UTC

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

2020-12-17 15:35:13 UTC

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

2021-07-05 16:21:11 UTC

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

2021-07-05 16:21:11 UTC

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

2021-07-05 16:21:12 UTC

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

2021-07-05 16:21:12 UTC

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

2021-07-05 16:21:24 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

2021-07-05 16:21:24 UTC

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

2021-07-05 16:21:27 UTC

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

2021-07-05 16:21:27 UTC

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

2021-07-05 16:21:27 UTC

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

2021-07-05 16:21:27 UTC

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

2021-07-05 16:21:27 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