Renovator Bot
64b76c4bd3
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [git-chglog/git-chglog](https://github.com/git-chglog/git-chglog) | patch | `v0.14.0` -> `v0.14.1` | --- ### Release Notes <details> <summary>git-chglog/git-chglog</summary> ### [`v0.14.1`](https://github.com/git-chglog/git-chglog/blob/master/CHANGELOG.md#v0141---2021-04-13) [Compare Source](https://github.com/git-chglog/git-chglog/compare/v0.14.0...v0.14.1) ##### Bug Fixes - **template:** address regression in string functions for template engine ([#​142](https://github.com/git-chglog/git-chglog/issues/142)) ##### Chores - add docker target to Makefile ([#​138](https://github.com/git-chglog/git-chglog/issues/138)) - add make release target ([#​130](https://github.com/git-chglog/git-chglog/issues/130)) - **deps:** update alpine docker tag to v3.13.4 ([#​136](https://github.com/git-chglog/git-chglog/issues/136)) ##### Features - add docker image on release and master ([#​135](https://github.com/git-chglog/git-chglog/issues/135)) </details> --- ### Renovate configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻️ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: docker/git-chglog#19 Co-authored-by: Renovator Bot <renovator@rknet.org> Co-committed-by: Renovator Bot <renovator@rknet.org>
31 lines
1.3 KiB
Docker
31 lines
1.3 KiB
Docker
FROM thegeeklab/alpine:latest@sha256:5adbeb780d26b33fd9a0f29817e7ab9006f318ec2d3396c00c523893ff13c66c
|
|
|
|
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.14.1}"
|
|
|
|
COPY overlay/ /
|
|
|
|
RUN apk add --update --no-cache --virtual .build-deps tar curl && \
|
|
apk add --update --no-cache git && \
|
|
echo "Installing git-chglog version '${CHGLOG_VERSION##v}' ..." && \
|
|
curl -SsL "https://github.com/git-chglog/git-chglog/releases/download/${CHGLOG_VERSION}/git-chglog_${CHGLOG_VERSION##v}_linux_amd64.tar.gz" | \
|
|
tar xz -C /usr/local/bin git-chglog && \
|
|
chmod 755 /usr/local/bin/git-chglog && \
|
|
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"]
|