5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-07 08:06:54 +00:00
commitlint-github-action/Dockerfile
Wagner Santos 33f8aa30dd fix: revert action to use debian image
Somehow when using alpine image, github actions was not running the entrypoint
2019-10-04 00:47:40 -03:00

9 lines
101 B
Docker

FROM node:10
COPY package*.json /
RUN npm ci --production
COPY . .
ENTRYPOINT ["/entrypoint.sh"]