mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 16:06:56 +00:00
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
11 lines
139 B
Docker
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"]
|