Last active
March 1, 2017 08:51
-
-
Save mvz/39a2408005f16174f5831eec4011910b to your computer and use it in GitHub Desktop.
Reproduction of openssl issue with Bundler 1.14.5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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