Files
container-toolkit-action/Dockerfile
T

16 lines
440 B
Docker
Raw Normal View History

2019-08-02 09:09:37 -04:00
FROM node:slim
2019-08-01 18:04:11 +00:00
LABEL "name"="Container Action Template"
LABEL "maintainer"="GitHub Actions <[email protected]>"
LABEL "version"="1.0.0"
LABEL "com.github.actions.name"="GitHub Container Action Template"
LABEL "com.github.actions.description"="Container action template."
LABEL "com.github.actions.icon"="package"
LABEL "com.github.actions.color"="blue"
2019-08-02 09:09:37 -04:00
COPY . .
2019-08-01 18:04:11 +00:00
2019-08-02 09:09:37 -04:00
RUN npm install --production
ENTRYPOINT ["node", "/lib/main.js"]