comment-on-pr/Dockerfile
Matthias Pigulla e806d254dc Use the alpine base image variant
This leads to a much smaller download and thus faster workflows on GH.
2020-01-22 12:53:50 +00:00

13 lines
500 B
Docker

FROM ruby:2.7-alpine
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>"
LABEL "com.github.actions.icon"="message-square"
LABEL "com.github.actions.color"="blue"
RUN gem install octokit
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]