Namespace
codeclimate
Image / Tag
codeclimate-rubocop:b964
Content Digest
sha256:1d59ba9566f2616f4f4a36b20ddb8992da7e423239303b236335a07874d836c5
Details
Created

2022-08-03 22:12:40 UTC

Size

100 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.68% (2.68 MB)

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

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

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

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

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

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

[#007] sha256:6674bcfbf8776d340f5f2c2f74efebbee1f34c60c79c6936b9cf61119a468f49 - 0.0% (1.13 KB)

[#008] sha256:ef8f3a3b6524c242ce46152b7167abbc9d87dabfd97580652aab8cbcd6ea5e01 - 73.76% (73.8 MB)

[#009] sha256:76d9ab11c6b261b764dd38a8ee4c3d852b4a66fdfd726b785e50e2bb702d226e - 0.15% (156 KB)

[#010] sha256:7ac6458b61b9d11aacf084e51229997c389eb83ad8e61867792897f0f86c5444 - 0.15% (156 KB)

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

2022-08-03 15:01:04 UTC

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

2022-08-03 15:01:04 UTC

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

2022-08-03 15:01:05 UTC

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

2022-08-03 22:12:19 UTC

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

2022-08-03 22:12:36 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

2022-08-03 22:12:37 UTC

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

2022-08-03 22:12:40 UTC

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

2022-08-03 22:12:40 UTC

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

2022-08-03 22:12:40 UTC

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

2022-08-03 22:12:40 UTC

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

2022-08-03 22:12:40 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