Sha256: f665ed1033fc2765faef7204cea94693a9d0c5153811884ead6013759d083dd1

Contents?: true

Size: 746 Bytes

Versions: 2

Compression:

Stored size: 746 Bytes

Contents

FROM ruby:2.6 as ruby-package-builder

RUN gem install bundler

WORKDIR /app

COPY bugsnag.gemspec Gemfile VERSION ./

RUN bundle install

COPY  CHANGELOG.md CONTRIBUTING.md TESTING.md LICENSE.txt Rakefile README.md UPGRADING.md .gitignore .rdoc_options .rspec .rubocop.yml .rubocop_todo.yml issue_template.md docker-compose.yml ./
COPY .buildkite ./.buildkite
COPY .git ./.git
COPY .github ./.github
COPY dockerfiles ./dockerfiles
COPY features ./features
COPY lib ./lib
COPY spec ./spec

RUN gem build bugsnag.gemspec

# The maze-runner node tests
FROM 855461928731.dkr.ecr.us-west-1.amazonaws.com/maze-runner:latest-cli as ruby-maze-runner
WORKDIR /app/
COPY features ./features
COPY --from=ruby-package-builder /app/bugsnag-*.gem bugsnag.gem

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bugsnag-6.15.0 dockerfiles/Dockerfile.ruby-maze-runner
bugsnag-6.14.0 dockerfiles/Dockerfile.ruby-maze-runner