From 6939696aac5ff349c37fcc4d7a8e19a8ee915d1c Mon Sep 17 00:00:00 2001 From: Sylvain Date: Mon, 6 Jun 2022 10:23:43 +0200 Subject: [PATCH] (bug) deprecated bundler arguments (#362) --- CHANGELOG.md | 1 + Dockerfile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b9cf61c99..674e48c9a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## next deploy +- Fix a bug: deprecated bundler arguments (#362) - Fix a bug: unable to compile the assets when OIDC is enabled but the scopes were not set ## v5.4.2 2022 June 1 diff --git a/Dockerfile b/Dockerfile index 941a8f4aa..ca5e313be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,7 @@ RUN bundle config --global frozen 1 WORKDIR /tmp COPY Gemfile /tmp/ COPY Gemfile.lock /tmp/ -RUN bundle install --binstubs --without development test doc +RUN bundle config set --local without 'development test doc' && bundle install && bundle binstubs --all # Install Javascript packages WORKDIR /usr/src/app