mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2025-02-21 15:54:22 +01:00
(bug) deprecated bundler arguments (#362)
This commit is contained in:
parent
0e16374956
commit
6939696aac
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
## next deploy
|
## 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
|
- Fix a bug: unable to compile the assets when OIDC is enabled but the scopes were not set
|
||||||
|
|
||||||
## v5.4.2 2022 June 1
|
## v5.4.2 2022 June 1
|
||||||
|
@ -46,7 +46,7 @@ RUN bundle config --global frozen 1
|
|||||||
WORKDIR /tmp
|
WORKDIR /tmp
|
||||||
COPY Gemfile /tmp/
|
COPY Gemfile /tmp/
|
||||||
COPY Gemfile.lock /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
|
# Install Javascript packages
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
Loading…
x
Reference in New Issue
Block a user