update labels in dockerfile

This commit is contained in:
Andrew Mason 2019-10-24 00:18:07 -04:00
parent 9f15426bbf
commit 97fef59c82
No known key found for this signature in database
GPG Key ID: DB28BFC2A4AACC38

View File

@ -2,12 +2,15 @@ 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 "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"
LABEL maintainer="Andrew Mason <andrewmcodes@protonmail.com>"
COPY lib /action/lib
RUN gem install bundler