Initial commit

This commit is contained in:
Jonathan Clem
2019-03-21 18:15:19 -04:00
commit 4f0213ed10
11 changed files with 2290 additions and 0 deletions

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM node:slim
LABEL "name"="github"
LABEL "maintainer"="GitHub Actions <support+actions@github.com>"
LABEL "version"="1.0.0"
LABEL "com.github.actions.name"="GitHub"
LABEL "com.github.actions.description"="An action for doing things on GitHub repositories"
LABEL "com.github.actions.icon"="briefcase"
LABEL "com.github.actions.color"="gray-dark"
COPY *.md /
COPY package*.json ./
RUN npm ci
COPY entrypoint.js /entrypoint.js
ENTRYPOINT ["node", "/entrypoint.js"]