gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/benchmarks/rubydev/Dockerfile (about)

     1  FROM ruby:3.0-alpine
     2  
     3  # Some of these dependencies are called as subprocesses by the fastlane tests.
     4  RUN apk add --no-cache ruby ruby-dev ruby-bundler ruby-json build-base bash \
     5      wget git unzip
     6  RUN wget -q \
     7        'https://github.com/fastlane/fastlane/archive/refs/tags/2.207.0.tar.gz' \
     8        -O /tmp/fastlane.tar.gz \
     9      && mkdir /fastlane \
    10      && cd /fastlane \
    11      && tar xfz /tmp/fastlane.tar.gz --strip-components=1 \
    12      && rm /tmp/fastlane.tar.gz \
    13      && for i in 1 2 3; do if bundle install; then break; fi; done
    14  COPY . /files/