Sha256: 49fa819f53f94f2398cb63b7f8a7d84751903892224310339b3743e362eb6bf2
Contents?: true
Size: 436 Bytes
Versions: 23
Compression:
Stored size: 436 Bytes
Contents
FROM ruby:2.6-alpine RUN apk add --update --no-cache \ build-base git openssh RUN mkdir /app WORKDIR /app COPY Gemfile /app COPY rails_spotlight.gemspec /app COPY lib/rails_spotlight/version.rb /app/lib/rails_spotlight/version.rb RUN echo 'gem: --no-rdoc --no-ri' >> "$HOME/.gemrc" RUN gem update --system 3.2.3 RUN gem install bundler -v 2.4.6 RUN bundle install COPY . /app RUN bundle install CMD ["bundle", "exec", "rspec"]
Version data entries
23 entries across 23 versions & 1 rubygems