-
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.
- Loading branch information
Showing
3 changed files
with
6 additions
and
6 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
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
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.7 | ||
FROM ruby:3.1 | ||
LABEL maintainer="Max Burnette <[email protected]>, Rob Kooper <[email protected]>" | ||
|
||
# arguments that are added at the bottom of BETY | ||
|
@@ -34,7 +34,7 @@ RUN apt-get update \ | |
curl \ | ||
git \ | ||
libgeos-dev \ | ||
netcat \ | ||
netcat-openbsd \ | ||
nodejs \ | ||
postgresql-client \ | ||
&& rm -rf /var/lib/apt/lists/* \ | ||
|
@@ -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' \ | ||
|