This repository has been archived on 2023-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
2019-10-24 22:28:50 -04:00

19 lines
538 B
Docker

FROM ruby:2.6.5-alpine
RUN apk add --update build-base git
LABEL "com.github.actions.name"="Rubocop Linter"
LABEL "com.github.actions.description"="A GitHub Action that lints your Ruby code with Rubocop!"
LABEL "com.github.actions.icon"="code"
LABEL "com.github.actions.color"="red"
LABEL "repository"="https://github.com/andrewmcodes/rubocop-linter-action"
LABEL "maintainer"="Andrew Mason <andrewmcodes@protonmail.com>"
LABEL "version"="0.2.0"
COPY lib /action/lib
RUN gem install bundler
ENTRYPOINT ["/action/lib/entrypoint.sh"]