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.
Andrew Mason 9f15426bbf
Fix Unprocessable Entity (RuntimeError) RuntimeError (#18)
fixes #16
fixes #17

Also updates the docs and moves to a smaller ruby image.
2019-10-24 22:15:35 -04:00

16 lines
392 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="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
RUN gem install bundler
ENTRYPOINT ["/action/lib/entrypoint.sh"]