5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-08 00:16:56 +00:00
commitlint-github-action/Dockerfile

11 lines
156 B
Docker

FROM node:12-alpine3.9
RUN apk --no-cache add git
COPY package*.json /
RUN npm ci --production --ignore-scripts
COPY . .
ENTRYPOINT ["/entrypoint.sh"]