From 48905706462eaf01237028667e164280e624dd2b Mon Sep 17 00:00:00 2001 From: Max Schoening Date: Sat, 12 Jan 2019 16:21:29 -0800 Subject: [PATCH] Add metadata for GitHub Actions registry --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Dockerfile b/Dockerfile index d19f927..15c17e9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,17 @@ FROM node:10-slim + +LABEL version="1.0.0" +LABEL repository="http://github.com/max/awesome-lint" +LABEL homepage="http://github.com/max/awesome-lint" +LABEL maintainer="Max Schoening " + +LABEL "com.github.actions.name"="GitHub Action for awesome-lint" +LABEL "com.github.actions.description"="Wraps the awesome-lint tool to check awesome lists" +LABEL "com.github.actions.icon"="play" +LABEL "com.github.actions.color"="purple" + RUN npm install -g awesome-lint + COPY entrypoint.sh /entrypoint.sh + ENTRYPOINT ["/entrypoint.sh"]