Files
git-cliff-action/Dockerfile
2024-06-03 16:14:05 +03:00

19 lines
657 B
Docker

FROM orhunp/git-cliff:2.3.0@sha256:3f60f2aa4b989fa0f8448b6eeb9bb5e100e4ec0c6c8ff7cb4d625f22289a634a
LABEL maintainer="orhun <orhunparmaksiz@gmail.com>"
LABEL repository="https://github.com/orhun/git-cliff-action"
LABEL homepage="https://github.com/orhun/git-cliff"
LABEL com.github.actions.name="Changelog Generator"
LABEL com.github.actions.description="Generate changelog based on your Git history"
LABEL com.github.actions.icon="triangle"
LABEL com.github.actions.color="green"
COPY README.md /
COPY LICENSE /
COPY entrypoint.sh /entrypoint.sh
RUN apt-get update && apt-get install -y jq && rm -rf /var/lib/apt/lists/*
ENTRYPOINT ["/entrypoint.sh"]