From 29812176783600148770128d658b7fdcd52bae22 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 10 Feb 2021 21:50:49 +0100 Subject: [PATCH] fix container build --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 16f4a8a..70de9f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,9 +16,9 @@ COPY overlay/ / RUN apk add --update --no-cache --virtual .build-deps tar curl && \ apk add --update --no-cache git && \ - echo "Installing git-chglog version '${KANBOARD_VERSION##v}' ..." && \ + 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 git-chglog -C /usr/local/bin && \ + tar xz -C /usr/local/bin git-chglog && \ chmod 755 /usr/local/bin/git-chglog && \ apk del .build-deps && \ rm -rf /var/cache/apk/* && \