git-chglog/Dockerfile
renovate[bot] 4f3ff62db6
chore(deps): update all non-major dependencies (#220)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2023-01-22 12:01:00 +01:00

11 lines
No EOL
214 B
Docker

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