comment-on-pr/Dockerfile

13 lines
500 B
Docker
Raw Normal View History

FROM ruby:2.7-alpine
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"]