mirror of
https://github.com/wagoid/commitlint-github-action.git
synced 2025-11-07 00:06:54 +00:00
9 lines
101 B
Docker
9 lines
101 B
Docker
FROM node:10
|
|
|
|
COPY package*.json /
|
|
|
|
RUN npm ci --production
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|