feat: Initial commit 🎉
Some checks failed
ci/woodpecker/manual/woodpecker Pipeline was successful
ci/woodpecker/tag/woodpecker Pipeline failed

This commit is contained in:
2024-04-03 12:02:53 +13:00
commit 99b2e7667f
3 changed files with 117 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM golang:1.20
ARG TARGETPLATFORM
ARG GOSEMREL_VERSION=v2.2.12
# Strip out the prefix
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 && \
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