git-chglog/Dockerfile
renovate[bot] 57aad771c8
chore(deps): update alpine docker tag to v3.13.5 (#144)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-04-14 15:46:29 -04:00

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" ]