github-pages-deploy-action/Dockerfile
2019-03-03 11:43:49 -05:00

14 lines
544 B
Docker

FROM node:10
LABEL "com.github.actions.name"="Deploy to Github Pages"
LABEL "com.github.actions.description"="This action will handle the building and deploying process of your project to Github Pages."
LABEL "com.github.actions.icon"="git-commit"
LABEL "com.github.actions.color"="#192022"
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"]