mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-23 02:15:12 +00:00
11 lines
No EOL
214 B
Docker
11 lines
No EOL
214 B
Docker
FROM alpine:3.13.5
|
|
|
|
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" ] |