git-chglog/Dockerfile
renovate[bot] 899c1ede45
chore(deps): update all non-major dependencies docker tags (#168)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-08-31 12:24:56 +02:00

11 lines
No EOL
214 B
Docker

FROM alpine:3.14.2
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" ]