Official Golang images are now only available for 3.18 and 3.17; 3.18 doesn't look to play well with gotestsum, so sticking to an older version. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
26 lines
563 B
Docker
26 lines
563 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
ARG ALPINE_VERSION=3.17
|
|
|
|
FROM alpine:${ALPINE_VERSION} AS gen
|
|
RUN apk add --no-cache bash git
|
|
WORKDIR /src
|
|
RUN --mount=type=bind,target=. \
|
|
mkdir /out && ./scripts/docs/generate-authors.sh /out
|
|
|
|
FROM scratch AS update
|
|
COPY --from=gen /out /
|
|
|
|
FROM gen AS validate
|
|
RUN --mount=type=bind,target=.,rw <<EOT
|
|
set -e
|
|
git add -A
|
|
cp -rf /out/* .
|
|
diff=$(git status --porcelain -- AUTHORS)
|
|
if [ -n "$diff" ]; then
|
|
echo >&2 'ERROR: Authors result differs. Please update with "make -f docker.Makefile authors"'
|
|
echo "$diff"
|
|
exit 1
|
|
fi
|
|
EOT
|