From 7fe2514e42cbadf501c3cfa8aafdc1cbe24e1c1c Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Fri, 2 Aug 2019 11:37:40 -0500 Subject: [PATCH] Removing extra labels (#2) --- Dockerfile | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index fd16f82..3bb27c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,16 +1,7 @@ FROM node:slim -LABEL "name"="Container Action Template" -LABEL "maintainer"="GitHub Actions " -LABEL "version"="1.0.0" - -LABEL "com.github.actions.name"="GitHub Container Action Template" -LABEL "com.github.actions.description"="Container action template." -LABEL "com.github.actions.icon"="package" -LABEL "com.github.actions.color"="blue" - COPY . . RUN npm install --production -ENTRYPOINT ["node", "/lib/main.js"] \ No newline at end of file +ENTRYPOINT ["node", "/lib/main.js"]