mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 02:15:12 +00:00
feat: add docker image on release and master (#135)
* feat: add docker image on release and master * resolves return on the PR * Add Installation docker doc * Update .github/workflows/publish.yml Co-authored-by: Derek Smith <derek@clokwork.net> * Resovle PR conversations * No v in RawVersion Co-authored-by: Derek Smith <derek@clokwork.net>
This commit is contained in:
parent
8d9e00b699
commit
2307bff72f
5 changed files with 69 additions and 1 deletions
11
Dockerfile
Normal file
11
Dockerfile
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
FROM alpine:3.13.3
|
||||
|
||||
RUN apk add --no-cache git && \
|
||||
mkdir /workdir
|
||||
|
||||
COPY git-chglog /usr/local/bin/git-chglog
|
||||
|
||||
WORKDIR /workdir
|
||||
RUN chmod +x /usr/local/bin/git-chglog
|
||||
|
||||
ENTRYPOINT [ "/usr/local/bin/git-chglog" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue