9
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2026-02-11 09:09:22 +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"]