forked from ceorcham/dpl-heroku
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update ci to use latest actions + add ruby-dev and gems
- Loading branch information
1 parent
1ca121f
commit 63e5681
Showing
2 changed files
with
14 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
ARG RUBY_VERSION | ||
FROM ruby:${RUBY_VERSION}-alpine | ||
# Install ruby-dev and other dependencies | ||
RUN apk add --no-cache ruby-dev | ||
# Install required gems | ||
RUN gem install faraday -v '~> 0.9.2' | ||
RUN gem install json | ||
RUN gem install netrc -v '~> 0.11.0' | ||
RUN gem install rendezvous -v '~> 0.1.3' | ||
|
||
RUN apk --no-cache add git curl | ||
RUN gem install dpl --pre |