mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 08:06:54 +00:00
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
This commit is contained in:
parent
f114310111
commit
d0b8181fa4
1 changed files with 3 additions and 1 deletions
|
|
@ -1,4 +1,6 @@
|
|||
FROM node:10
|
||||
FROM node:12-alpine3.9
|
||||
|
||||
RUN apk --no-cache add git
|
||||
|
||||
COPY package*.json /
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue