mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-07-23 19:07:37 +00:00
12 lines
No EOL
266 B
Docker
12 lines
No EOL
266 B
Docker
FROM alpine
|
|
|
|
RUN apk add --no-cache git && \
|
|
mkdir /workdir && \
|
|
git config --global --add safe.directory /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" ] |