-
Notifications
You must be signed in to change notification settings - Fork 153
Open
Labels
Description
$ bundle install --frozen --jobs 4 --path /app/data/bundler --retry 2
pid: 3395254
[DEPRECATED] The `--frozen` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set frozen true`, and stop using this flag
[DEPRECATED] The `--path` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set path '/app/data/bundler'`, and stop using this flag
Bundler 2.7.2 is running, but your lockfile was generated with 4.0.2. Installing Bundler 4.0.2 and restarting using that version.
Fetching gem metadata from https://rubygems.org/.
Fetching bundler 4.0.2
Installing bundler 4.0.2
The `--frozen` flag has been removed because it relied on being remembered
across bundler invocations, which bundler no longer does. Instead please use
`bundle config set frozen true`, and stop using this flag
bundle install --frozen --jobs 4 --path /app/data/bundler --retry 2 terminated with exit status 15
https://blog.rubygems.org/2025/12/03/upgrade-to-rubygems-bundler-4.html
Looks like we have two options:
- Freeze via config by running
bundle config set --local frozen truebefore runningbundle install ... - Freeze via an environment:
BUNDLE_FROZEN=true
Likewise for replacing --path