mirror of
https://github.com/git-chglog/git-chglog.git
synced 2026-01-22 18:06:11 +00:00
* chore: use --clean for goreleaser * fix(ci): add gorleaser test * fix(ci): prebuild binary in IT test * fix(ci): use only ubuntu for docker image tests
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" ] |