Sha256: 89c408aa87cf5b65411b2fa49701af8d90bba72ac9a04cd31fa3759ca708eb93

Contents?: true

Size: 277 Bytes

Versions: 4

Compression:

Stored size: 277 Bytes

Contents

FROM jruby:latest

RUN apt-get update && apt-get install -y git

WORKDIR /app/

COPY . .
ARG BUNDLE_VERSION
ARG GEMSETS
RUN gem install bundler -v $BUNDLE_VERSION
RUN bundle _${BUNDLE_VERSION}_ install --with "$GEMSETS" --binstubs

CMD ["bundle", "exec", "./bin/rake", "spec"]

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
bugsnag-6.15.0 dockerfiles/Dockerfile.jruby-unit-tests
bugsnag-6.14.0 dockerfiles/Dockerfile.jruby-unit-tests
bugsnag-6.13.1 dockerfiles/Dockerfile.jruby-unit-tests
bugsnag-6.13.0 dockerfiles/Dockerfile.jruby-unit-tests