2024-02-02 00:28:20 +03:00
|
|
|
FROM goreleaser/goreleaser:v1.14.0 as build
|
2021-04-05 21:33:58 +03:00
|
|
|
|
|
|
|
WORKDIR /build
|
|
|
|
ADD . /build
|
|
|
|
|
2021-06-21 02:46:09 +03:00
|
|
|
RUN apk add -u gnupg
|
|
|
|
|
|
|
|
RUN \
|
|
|
|
export GNUPGHOME="$PWD/releaser-gpg" && export GNUPGHOME && mkdir -p "$GNUPGHOME" && chmod 0700 "$GNUPGHOME" && \
|
|
|
|
cat reproxy.signing-key.gpg | gpg --batch --allow-secret-key-import --import && \
|
|
|
|
goreleaser --snapshot --skip-publish --rm-dist
|
2021-04-05 21:33:58 +03:00
|
|
|
|
|
|
|
FROM alpine
|
|
|
|
COPY --from=build /build/dist/ /dist/
|
|
|
|
RUN \
|
|
|
|
mkdir -p /artifacts && \
|
|
|
|
cp /dist/*.gz /artifacts/ && \
|
|
|
|
cp /dist/*.zip /artifacts/ && \
|
|
|
|
cp /dist/*.txt /artifacts/ && \
|
2021-06-21 02:46:09 +03:00
|
|
|
cp /dist/*.sig /artifacts/ && \
|
2021-04-05 21:33:58 +03:00
|
|
|
cp /dist/*.rpm /artifacts/ && \
|
|
|
|
cp /dist/*.deb /artifacts/ && \
|
|
|
|
ls -la /artifacts/*
|
|
|
|
|
|
|
|
CMD ["sleep", "100"]
|