Files
github/Dockerfile
Jonathan Clem 4f0213ed10 Initial commit
2019-03-29 15:32:31 -07:00

20 lines
470 B
Docker

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"]