fix: Update Dockerfile instruction 🔧
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline was successful

This commit is contained in:
2024-04-03 12:09:21 +13:00
parent 99b2e7667f
commit e690d6b988

View File

@@ -6,7 +6,7 @@ ENV PLAT=${TARGETPLATFORM//"linux/"/}
# Grab Copy of go-semantic-release
ADD https://hub.cybercinch.nz/cybercinch/go-semantic-release/releases/download/${GOSEMREL_VERSION}/go-semantic-release.linux_${PLAT}.zip /tmp
RUN apt-get update && apt-get install -y --no-recommends unzip && \
RUN apt-get update && apt-get install -y unzip && \
unzip -d /tmp /tmp/go-semantic-release.linux_${PLAT}.zip && \
mv /tmp/go-semantic-release.linux_${PLAT} /usr/local/bin/go-semantic-release && \
rm -f /tmp/go-semantic-release.linux_${PLAT}.zip