Namespace
codeclimate
Image / Tag
codeclimate-rubocop:b488
Content Digest
sha256:4c0ba21bff0a85b4e5871b37a3fb80b4d46f0b4fd18475c1c12f2e2d0b83118a
Details
Created

2019-06-04 11:14:51 UTC

Size

32.7 MB

Content Digest
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

RUBYGEMS_VERSION

3.0.3

RUBY_DOWNLOAD_SHA256

25da31b9815bfa9bba9f9b793c055a40a35c43c6adfb1fdbd81a09099f9b529c

RUBY_MAJOR

2.4

RUBY_VERSION

2.4.6


Layers

[#000] sha256:e7c96db7181be991f19a9fb6975cdbbd73c65f4a2681348e63a141a2192a5f10 - 8.05% (2.63 MB)

[#001] sha256:622c94c90cb16cee45cb63da0b905ead12c0d80c5acb5851f1fee113491f00d9 - 3.01% (1010 KB)

[#002] sha256:5ab26e9d8a17e7ae3cef8a610206bba0078a26367e3125abe07e5103f577757e - 0.0% (197 Bytes)

[#003] sha256:5720c161142d34c960bdb8ff6cfae5809efe9b517f92c7ed55e47de68275f812 - 66.62% (21.8 MB)

[#004] sha256:7ac76bb40b5914e0fa76596e84d1162785c8853a1c5ba308ff176078e363cbb7 - 0.0% (140 Bytes)

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

[#006] sha256:3068136881282e95b137cf255875a120ee0bc588083a645e9d52ac010398efc8 - 0.0% (1.22 KB)

[#007] sha256:469951cf0da5764dd90f58a56fa2bbd7015bfeeec35f97c9de15326cb629ca29 - 0.0% (938 Bytes)

[#008] sha256:a287e36609dbce4904a22c3f32c8b76e1a72f3b9090ad722d0b1b740fcaeed2e - 21.71% (7.1 MB)

[#009] sha256:17501163cb2cad2c569fe9ce8afc18d278e942cd59fefbe8223d8955b00c86c5 - 0.3% (101 KB)

[#010] sha256:89d4d5972c0c4b9f897a680fe843a6a468670a0ebb26267e4782667827396fb7 - 0.3% (101 KB)

[#011] sha256:bc906f98b29c47b642691482b6f334a2697c83865a4f9414042dd6f59ef0be14 - 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-05-11 03:26:41 UTC

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

2019-05-11 03:36:21 UTC

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

2019-05-11 03:36:21 UTC

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

2019-05-11 03:36:22 UTC

/bin/sh -c #(nop) ENV RUBY_DOWNLOAD_SHA256=25da31b9815bfa9bba9f9b793c055a40a35c43c6adfb1fdbd81a09099f9b529c

2019-05-11 03:36:22 UTC

/bin/sh -c #(nop) ENV RUBYGEMS_VERSION=3.0.3

2019-05-11 03:41:52 UTC

/bin/sh -c set -ex && 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 -c - && 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 -c - && 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 && ruby -e 'exit(Gem::Version.create(ENV["RUBYGEMS_VERSION"]) > Gem::Version.create(Gem::VERSION))' && gem update --system "$RUBYGEMS_VERSION" && rm -r /root/.gem/ && ruby --version && gem --version && bundle --version

2019-05-11 03:41:53 UTC

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

2019-05-11 03:41:53 UTC

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

2019-05-11 03:41:53 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-05-11 03:41:54 UTC

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

2019-05-11 03:41:55 UTC

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

2019-05-28 16:52:13 UTC

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

2019-05-28 16:52:13 UTC

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

2019-06-04 11:14:39 UTC

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

2019-06-04 11:14:49 UTC

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

2019-06-04 11:14:49 UTC

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

2019-06-04 11:14:51 UTC

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

2019-06-04 11:14:51 UTC

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

2019-06-04 11:14:51 UTC

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

2019-06-04 11:14:51 UTC

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

2019-06-04 11:14:51 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