devdocs
devdocs copied to clipboard
Fixed bundle install --system deprecation warning
On docker build .
, I noticed the message
[DEPRECATED] The
--system
flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please usebundle config set system 'true'
, and stop using this flag
I replaced the deprecated flag in both Dockerfiles. Rebuilting the image worked as expected with the change.