forked from renzhaosy/hexo-deploy-action
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdockerfile
More file actions
19 lines (14 loc) · 739 Bytes
/
Copy pathdockerfile
File metadata and controls
19 lines (14 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Container image that runs your code
FROM node:10
LABEL "com.github.actions.name"="Hexo Deploy"
LABEL "com.github.actions.description"="This GitHub action will handle the building and deploying process of hexo project."
LABEL "com.github.actions.icon"="git-commit"
LABEL "com.github.actions.color"="orange"
LABEL "repository"="https://github.com/y4code/hexo-deploy-action"
LABEL "homepage"="https://github.com/y4code/hexo-deploy-action"
LABEL "maintainer"="renzhaosy"
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]