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-09-02 21:28:34 -04:00

12 lines
321 B
Docker

FROM ruby:2.6
LABEL com.github.actions.name="Rubocop Linter"
LABEL com.github.actions.description="Lint your Ruby code"
LABEL com.github.actions.icon="code"
LABEL com.github.actions.color="red"
LABEL maintainer="Andrew Mason <andrewmcodes@protonmail.com>"
COPY lib /action/lib
ENTRYPOINT ["/action/lib/entrypoint.sh"]