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
dependabot[bot] 6bb237b691
chore(deps): bump node from 20.16.0-alpine3.20 to 24.1.0-alpine3.20
Bumps node from 20.16.0-alpine3.20 to 24.1.0-alpine3.20.

---
updated-dependencies:
- dependency-name: node
  dependency-version: 24.1.0-alpine3.20
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-18 03:03:54 +00:00

23 lines
345 B
Docker

FROM node:24.1.0-alpine3.20 as build
COPY package*.json /
RUN npm ci --ignore-scripts
COPY . .
RUN npm run build
FROM node:24.1.0-alpine3.20
RUN apk --no-cache add git
COPY --from=build dist/run.mjs /run.mjs
COPY package*.json /
RUN npm ci --production --ignore-scripts
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]