Skip to content

Instantly share code, notes, and snippets.

@mvz
Last active March 1, 2017 08:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvz/39a2408005f16174f5831eec4011910b to your computer and use it in GitHub Desktop.
Save mvz/39a2408005f16174f5831eec4011910b to your computer and use it in GitHub Desktop.
Reproduction of openssl issue with Bundler 1.14.5
# Reproduction of https://github.com/ruby/openssl/issues/103 with bundler 1.14.5
FROM ruby:2.4.0
RUN apt-get update
RUN apt-get install -y nodejs
RUN gem update openssl
RUN gem install rails
RUN rails new bbug
WORKDIR /bbug
RUN echo "gem 'cucumber-rails', group: :test, require: false" >> Gemfile
RUN echo "gem 'database_cleaner', group: :test, require: false" >> Gemfile
RUN gem update bundler
RUN bundle
RUN rails db:migrate
RUN rails g cucumber:install
RUN bundle -v
RUN bundle exec rake cucumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment