Compare commits

...

10 Commits

Author SHA1 Message Date
e1b7856d76 chore(docker): update thegeeklab/alpine:latest docker digest to eac1c81
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing
2022-09-13 19:02:50 +00:00
1720f98600 chore(docker): update thegeeklab/alpine digest to e71624f
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-08-09 20:03:30 +00:00
0d0a05e46b chore(docker): update thegeeklab/alpine digest to 37eb741
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-08-06 20:03:25 +00:00
d3749f5507 chore(docker): update thegeeklab/alpine digest to d3c0798
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-08-05 03:03:16 +00:00
18da4a7b05 chore(docker): update thegeeklab/alpine digest to 129553a
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-19 01:02:04 +00:00
c430721a59 chore(docker): update thegeeklab/alpine digest to 2b8c286
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-07-13 10:03:20 +00:00
9799f5d928 chore(docker): update thegeeklab/alpine digest to da5c5e3
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-06-28 23:03:19 +00:00
73f9693290 chore(docker): update thegeeklab/alpine digest to 2408399
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-06-21 20:03:19 +00:00
8506f17fdb chore(docker): update thegeeklab/alpine digest to e80ebc4
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2022-06-21 14:03:18 +00:00
9b95c09e1a
fix: force curl to fail on error
All checks were successful
continuous-integration/drone/push Build is passing
2022-06-21 15:15:17 +02:00

View File

@ -1,4 +1,4 @@
FROM thegeeklab/alpine:latest@sha256:799f39383e4a2a83aa751bf97a7cbbbc7f4855e1b5df6b1bb73b72122295e5c6
FROM thegeeklab/alpine:latest@sha256:eac1c816f71bf6d586f4a32281175c26abb49ce1408fad68eed202b921f91a37
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
@ -17,7 +17,7 @@ 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" | \
curl -SsfL "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 && \