1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

(bug) deprecated bundler arguments (#362)

This commit is contained in:
Sylvain 2022-06-06 10:23:43 +02:00
parent 0e16374956
commit 6939696aac
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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