Sha256: 229e0bedab77454b57dadb8fd21da0411fdb222d5c80c1cd3656334b256c0169

Contents?: true

Size: 453 Bytes

Versions: 7

Compression:

Stored size: 453 Bytes

Contents

FROM ruby:2.2.4

RUN mkdir /src
WORKDIR /src

COPY Gemfile Gemfile
COPY conjur.gemspec conjur.gemspec
COPY lib/conjur/version.rb lib/conjur/version.rb

# Make sure only one version of bundler is available
RUN gem uninstall bundler -i /usr/local/lib/ruby/gems/2.1.0 bundler || true && \
  gem uninstall bundler -i /usr/local/lib/ruby/gems/2.2.0 bundler || true && \
  gem uninstall bundler -aIx && \
  gem install bundler -v 1.11.2 && \
  bundle install

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
conjur-cli-5.5.0 Dockerfile
conjur-cli-5.4.0 Dockerfile
conjur-cli-5.3.0 Dockerfile
conjur-cli-5.2.5 Dockerfile
conjur-cli-5.2.4 Dockerfile
conjur-cli-5.2.3 Dockerfile
conjur-cli-5.2.1 Dockerfile