We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See: https://stackoverflow.com/questions/78617432/strange-bundle-update-issue-disappearing-net-pop-0-1-2-dependency
The text was updated successfully, but these errors were encountered:
Workaround:
diff --git a/Dockerfile b/Dockerfile index eba01ff..5978eec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,8 @@ RUN apt-get update -qq && \ # Install application gems COPY Gemfile Gemfile.lock ./ -RUN bundle install && \ +RUN sed -i "/net-pop (0.1.2)/a\ net-protocol" Gemfile.lock && \ + bundle install && \ rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git && \ bundle exec bootsnap precompile --gemfile
Sorry, something went wrong.
Test to see if this problem affects your application:
ruby -r bundler -e 'p Bundler::LockfileParser.new(Bundler.read_file("Gemfile.lock")).specs.find {|spec| spec.name == "net-pop"}&.dependencies&.empty?'
If the result is nil or false you are OK. If the result is true, the bug affects you and will prevent successful deployment.
nil
false
true
Successfully merging a pull request may close this issue.
See: https://stackoverflow.com/questions/78617432/strange-bundle-update-issue-disappearing-net-pop-0-1-2-dependency
The text was updated successfully, but these errors were encountered: