5
0
Fork 0
mirror of https://github.com/wagoid/commitlint-github-action.git synced 2025-11-07 16:06:56 +00:00
commitlint-github-action/Dockerfile
Wagner Santos d0b8181fa4 perf: improve action pull speed by using an alpine image
The action's image is now based on alpine, which reduced drastically it's size. The previous compressed size was ~352 MB, now it's only ~56 MB.

Resolves #37
2020-07-03 15:56:33 -03:00

11 lines
139 B
Docker

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