force package update
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/tag Build is passing

This commit is contained in:
Paolo Asperti 2024-05-25 19:34:49 +02:00
parent 26a777f4df
commit 1ac07c5704
Signed by: paspo
GPG Key ID: 06D46905D19D5182

View File

@ -5,12 +5,12 @@ FROM alpine:latest as prep
ARG HUGO_ARCH=amd64
RUN \
apk -U add lastversion && \
apk --no-cache upgrade && \
apk --no-cache add lastversion && \
URL=$(lastversion --filter "hugo_extended_.*\-${HUGO_ARCH}\.tar\.gz$" --pre gohugoio/hugo --format assets) && \
echo "Downloading: ${URL}" && \
wget "${URL}" -O - | tar xzv -C /tmp
##### final image
FROM alpine:latest