forked from redbooth/departure
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove support for EOL Ruby and Rails
- Loading branch information
1 parent
33b2039
commit c090c43
Showing
6 changed files
with
22 additions
and
26 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
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.3.4 | ||
FROM ruby:3.3.0 | ||
MAINTAINER [email protected] | ||
|
||
# Install apt based dependencies required to run Rails as | ||
|
@@ -14,11 +14,11 @@ RUN apt-get update && apt-get install -y \ | |
RUN mkdir -p /app /app/lib/departure | ||
WORKDIR /app | ||
|
||
# Copy the Gemfile as well as the Gemfile.lock and install | ||
# the RubyGems. This is a separate step so the dependencies | ||
# will be cached unless changes to one of those two files | ||
# Copy the Gemfile as well as the Gemfile.lock and install | ||
# the RubyGems. This is a separate step so the dependencies | ||
# will be cached unless changes to one of those two files | ||
# are made. | ||
COPY departure.gemspec Gemfile ./ | ||
COPY departure.gemspec Gemfile ./ | ||
COPY lib/departure/version.rb ./lib/departure/ | ||
|
||
RUN gem install bundler && bundle install --jobs 20 --retry 5 | ||
|
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