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
wagoid 30d514f252 feat: upgrade to node.js 16 to support ES modules by default
This will help upgrading dependencies to new versions that are exported
as ESM.

BREAKING CHANGE: Node.js version used on the action updated from 12 to
16
2021-07-07 12:53:39 -03:00

11 lines
157 B
Docker

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