mirror of
https://github.com/orhun/git-cliff-action.git
synced 2026-03-22 15:35:44 +08:00
17 lines
531 B
Docker
17 lines
531 B
Docker
FROM orhunp/git-cliff:latest
|
|
|
|
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="orange"
|
|
|
|
WORKDIR action
|
|
COPY README.md LICENSE entrypoint.sh ./
|
|
RUN sudo chmod +x entrypoint.sh
|
|
|
|
ENTRYPOINT ["entrypoint.sh"]
|