Skip to content

Commit

Permalink
Merge pull request #14 from matsubo/feature/fix-bundler-error
Browse files Browse the repository at this point in the history
Installed a newest bundler to avoid lower version error
  • Loading branch information
cadwallion authored Nov 30, 2021
2 parents 1e0ec8a + 72752b3 commit 8f9e053
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ruby:2.6.6
FROM ruby:3

LABEL "name"="Publish to Rubygems"
LABEL "version"="1.0.0"
LABEL "version"="1.1.0"

LABEL "com.github.actions.name"="Publish to Rubygems"
LABEL "com.github.actions.icon"="upload"
Expand All @@ -12,6 +12,8 @@ ENV LC_ALL C.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8

RUN gem install bundler

ADD entrypoint.sh /entrypoint.sh

ENTRYPOINT ["/entrypoint.sh"]

0 comments on commit 8f9e053

Please sign in to comment.