Namespace
codeclimate
Image / Tag
codeclimate-rubocop:b885
Content Digest
sha256:1bcbf05a58dbe08e61ef472242ced078808e8d9d715a8190ae194ce261418d36
Details
Created

2021-12-07 22:29:19 UTC

Size

98.9 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.09% (1.08 MB)

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

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

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

[#005] sha256:952441c6cb8b98d0d2fc6ae09f568817ec6d9290b4e6736ca69c180f98e9c205 - 0.0% (134 Bytes)

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

[#007] sha256:c0d2c1868388e0bade3024f0c7f69e1a22139927a0901eccbbfb0beaaf326c46 - 0.0% (1.14 KB)

[#008] sha256:9c045877ea637de89a67f54a86fae07d3f18646c797d7fb2e1dd1965ca939393 - 73.47% (72.6 MB)

[#009] sha256:22345715967af33b55a760384d23fa617b500c7e8dd1903f4e66580d59618ab0 - 0.15% (148 KB)

[#010] sha256:ce0a51cab4071f79962d53e635654597d0be2bb81b9d27930ee303a1c265a3cb - 0.15% (148 KB)

[#011] sha256:b1f81b9171fa87325c3533994bafbd32d86704c4b9fd27a2fe5e10dec0330ae8 - 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-12-07 22:07:42 UTC

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

2021-12-07 22:07:42 UTC

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

2021-12-07 22:07:43 UTC

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

2021-12-07 22:29:05 UTC

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

2021-12-07 22:29:16 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-12-07 22:29:16 UTC

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

2021-12-07 22:29:18 UTC

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

2021-12-07 22:29:18 UTC

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

2021-12-07 22:29:19 UTC

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

2021-12-07 22:29:19 UTC

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

2021-12-07 22:29:19 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