github-pages-deploy-action/Dockerfile

14 lines
543 B
Docker
Raw Normal View History

2019-03-03 07:43:28 +08:00
FROM node:10
LABEL "com.github.actions.name"="Deploy to Github Pages"
2019-03-04 00:43:49 +08:00
LABEL "com.github.actions.description"="This action will handle the building and deploying process of your project to Github Pages."
2019-03-03 22:42:07 +08:00
LABEL "com.github.actions.icon"="git-commit"
2019-03-04 01:02:39 +08:00
LABEL "com.github.actions.color"="orange"
2019-03-03 07:43:28 +08:00
LABEL "repository"="http://github.com/JamesIves/gh-pages-github-action"
LABEL "homepage"="http://github.com/JamesIves/gh-pages-gh-action"
LABEL "maintainer"="James Ives <iam@jamesiv.es>"
ADD entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]