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

Version Path
rails_spotlight-0.4.2 Dockerfile
rails_spotlight-0.4.1 Dockerfile
rails_spotlight-0.4.0 Dockerfile
rails_spotlight-0.3.9 Dockerfile
rails_spotlight-0.3.8 Dockerfile
rails_spotlight-0.3.7 Dockerfile
rails_spotlight-0.3.6 Dockerfile
rails_spotlight-0.3.5 Dockerfile
rails_spotlight-0.3.4 Dockerfile
rails_spotlight-0.3.3 Dockerfile
rails_spotlight-0.3.2 Dockerfile
rails_spotlight-0.3.1 Dockerfile
rails_spotlight-0.3.0 Dockerfile
rails_spotlight-0.2.5 Dockerfile
rails_spotlight-0.2.4 Dockerfile
rails_spotlight-0.2.3 Dockerfile
rails_spotlight-0.2.2 Dockerfile
rails_spotlight-0.2.1 Dockerfile
rails_spotlight-0.2.0 Dockerfile
rails_spotlight-0.1.7 Dockerfile