comment-on-pr/Dockerfile

13 lines
502 B
Docker
Raw Normal View History

2021-07-20 13:48:07 +08:00
FROM ruby:3-alpine3.13
2019-05-23 02:40:32 +08:00
LABEL "com.github.actions.name"="Comment on PR"
LABEL "com.github.actions.description"="Leaves a comment on an open PR matching a push event."
LABEL "com.github.actions.repository"="https://github.com/unsplash/comment-on-pr"
LABEL "com.github.actions.maintainer"="Aaron Klaassen <aaron@unsplash.com>"
2019-05-23 04:59:21 +08:00
LABEL "com.github.actions.icon"="message-square"
LABEL "com.github.actions.color"="blue"
2019-05-23 02:40:32 +08:00
RUN gem install octokit
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]