Namespace
codeclimate
Image / Tag
codeclimate-rubocop:b928
Content Digest
sha256:a102a1fa89ac52376a4ee3f358637ba474034eb5f985777e0d08efc8f852ae70
Details
Created

2022-06-23 15:06:09 UTC

Size

98.8 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.44% (22.2 MB)

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

[#005] sha256:6acd9ce4632b6fbba7b52547aa8bb322b2e3add4edb091d9b137c5650da42bb6 - 0.0% (134 Bytes)

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

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

[#008] sha256:32dbbc748b1b4234aa53098adcee2bcba536ecd2ebc515497bcbc314cc2ce2f8 - 73.46% (72.6 MB)

[#009] sha256:9e10e684bb456cc104e0f82bfbd7fb4366481ec364f00a7c0fb6db8cfa922fe1 - 0.15% (148 KB)

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

[#011] sha256:a0b0c9fc3170f295db6467f6b8cd5cd284b099416dac5118078d2855a9dba92c - 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-06-23 15:05:51 UTC

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

2022-06-23 15:05:51 UTC

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

2022-06-23 15:05:52 UTC

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

2022-06-23 15:05:52 UTC

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

2022-06-23 15:06:05 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-06-23 15:06:06 UTC

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

2022-06-23 15:06:09 UTC

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

2022-06-23 15:06:09 UTC

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

2022-06-23 15:06:09 UTC

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

2022-06-23 15:06:09 UTC

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

2022-06-23 15:06:09 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