This repository has been archived on 2023-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
git-chglog/Dockerfile

31 lines
1.3 KiB
Docker
Raw Permalink Normal View History

FROM thegeeklab/alpine:latest@sha256:686ad37427ebcbccddafea3ea52cbd4f5d76c747b324220239ab17790e5e8cb3
2021-02-10 21:22:23 +01:00
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.title="git-chglog"
LABEL org.opencontainers.image.url="https://gitea.rknet.org/docker/git-chglog"
LABEL org.opencontainers.image.source="https://gitea.rknet.org/docker/git-chglog"
LABEL org.opencontainers.image.documentation="https://gitea.rknet.org/docker/git-chglog"
ARG BUILD_VERSION
# renovate: datasource=github-releases depName=git-chglog/git-chglog
ENV CHGLOG_VERSION="${BUILD_VERSION:-v0.15.4}"
2021-02-10 21:22:23 +01:00
COPY overlay/ /
2021-02-10 21:44:39 +01:00
RUN apk add --update --no-cache --virtual .build-deps tar curl && \
2021-02-10 21:22:23 +01:00
apk add --update --no-cache git && \
2021-02-10 21:50:49 +01:00
echo "Installing git-chglog version '${CHGLOG_VERSION##v}' ..." && \
2022-06-21 15:15:17 +02:00
curl -SsfL "https://github.com/git-chglog/git-chglog/releases/download/${CHGLOG_VERSION}/git-chglog_${CHGLOG_VERSION##v}_linux_amd64.tar.gz" | \
2021-02-10 21:50:49 +01:00
tar xz -C /usr/local/bin git-chglog && \
2021-02-10 21:44:39 +01:00
chmod 755 /usr/local/bin/git-chglog && \
2021-02-10 21:22:23 +01:00
apk del .build-deps && \
rm -rf /var/cache/apk/* && \
rm -rf /tmp/* && \
rm -rf /root/.cache/
USER root
CMD []
ENTRYPOINT ["/usr/local/bin/git-chglog"]