-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating ruby base image and bundler version in Dockerfile
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ruby:2.6 | ||
FROM ruby:3.1.2 | ||
LABEL maintainer="Max Burnette <[email protected]>, Rob Kooper <[email protected]>" | ||
|
||
# arguments that are added at the bottom of BETY | ||
|
@@ -46,7 +46,7 @@ WORKDIR /home/bety | |
|
||
# install gems (allowing for caching) | ||
COPY --chown=bety /Gemfile* /home/bety/ | ||
RUN gem install bundler -v 1.17.3 \ | ||
RUN gem install bundler -v 2.3 \ | ||
&& bundle config path vendor/bundle \ | ||
&& bundle config without 'test development production debug javascript_testing' \ | ||
&& bundle config with 'docker' \ | ||
|