Sha256: 77f6802ac3f27fdd1290b8491d4da3bf0fb92f81c4f5f206ca19ff19a64b89bd
Contents?: true
Size: 463 Bytes
Versions: 6
Compression:
Stored size: 463 Bytes
Contents
# Build with: # docker build -t date_holidays-reader . FROM ruby:2.3.8 # throw errors if Gemfile has been modified since Gemfile.lock RUN bundle config --global frozen 1 WORKDIR /usr/src/app COPY Gemfile Gemfile.lock date-holiday-reader.gemspec ./ COPY lib ./lib COPY node_bin ./node_bin RUN find . RUN bundle install # Run tests with: # docker run -it --mount src="$(pwd)",target=/usr/src/app/mount,type=bind date_holidays-reader sh -c 'cd mount && rspec'
Version data entries
6 entries across 6 versions & 1 rubygems