Description
The --path flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions.
Relevant Link
|
bundle install --path vendor/bundle/ &&\ |
Possible solution
bundle config set --local path 'vendor/bundle/'
or
bundle config set --global path 'vendor/bundle/'
Description
The
--pathflag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions.Relevant Link
serverless-inspec-lambda/src/Dockerfile
Line 41 in e355e54
Possible solution
bundle config set --local path 'vendor/bundle/'or
bundle config set --global path 'vendor/bundle/'