Sha256: 00e5dddc2e033d3fea586bcb13189a6368f4c9a97f2a89a7e4415c1e55ca71a7
Contents?: true
Size: 641 Bytes
Versions: 16
Compression:
Stored size: 641 Bytes
Contents
ARG from_image FROM ${from_image} RUN uname -a # Change download address of Centos-8 which is EOL RUN sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-* RUN sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-* RUN yum install -y ruby git RUN ruby --version RUN gem env # centos-8 comes with Ruby 2.5, and this is the last version of bundler that supports it RUN gem install bundler -v2.2.28 WORKDIR /build CMD ruby -e "puts Gem::Platform.local.to_s" && \ gem install --local *.gem --verbose --no-document && \ cd test/rcd_test/ && \ bundle install && \ rake test
Version data entries
16 entries across 16 versions & 1 rubygems