2019-09-11 11:56:17 +08:00
|
|
|
FROM mhart/alpine-node:10.15.1
|
|
|
|
|
|
|
|
LABEL "com.github.actions.name"="GitHub Action for WeChat Work"
|
2019-09-11 15:34:50 +08:00
|
|
|
LABEL "com.github.actions.description"="Send WeChat Work message. Run on any operating platform, such as Windows, Linux, Mac supported by GitHub"
|
2019-09-11 15:32:58 +08:00
|
|
|
LABEL "com.github.actions.icon"="message-circle"
|
2019-09-11 11:56:17 +08:00
|
|
|
LABEL "com.github.actions.color"="red"
|
|
|
|
|
|
|
|
LABEL "repository"="https://github.com/chf007/action-wechat-work"
|
|
|
|
LABEL "homepage"="https://github.com/chf007/action-wechat-work"
|
|
|
|
LABEL "maintainer"="chf007 <chf007server@gmail.com>"
|
2019-09-11 21:36:49 +08:00
|
|
|
LABEL "version"="1.0.3"
|
2019-09-11 11:56:17 +08:00
|
|
|
|
|
|
|
ADD entrypoint.js package.json package-lock.json /
|
|
|
|
RUN npm ci
|
|
|
|
RUN chmod +x /entrypoint.js
|
|
|
|
|
|
|
|
ENTRYPOINT ["node", "/entrypoint.js"]
|