2021-08-17 14:41:15 +08:00
|
|
|
# syntax=docker/dockerfile:1.3
|
2021-02-17 15:03:26 +08:00
|
|
|
|
2021-09-03 05:11:05 +08:00
|
|
|
ARG GO_VERSION=1.17.0
|
|
|
|
|
|
|
|
FROM golang:${GO_VERSION}-alpine AS vendored
|
2019-03-24 14:02:35 +08:00
|
|
|
RUN apk add --no-cache git rsync
|
2019-03-23 04:29:28 +08:00
|
|
|
WORKDIR /src
|
2019-03-24 14:02:35 +08:00
|
|
|
RUN --mount=target=/context \
|
|
|
|
--mount=target=.,type=tmpfs,readwrite \
|
2019-03-23 04:29:28 +08:00
|
|
|
--mount=target=/go/pkg/mod,type=cache \
|
2019-03-24 14:02:35 +08:00
|
|
|
rsync -a /context/. . && \
|
2019-03-23 04:29:28 +08:00
|
|
|
go mod tidy && go mod vendor && \
|
|
|
|
mkdir /out && cp -r go.mod go.sum vendor /out
|
|
|
|
|
|
|
|
FROM scratch AS update
|
|
|
|
COPY --from=vendored /out /out
|
|
|
|
|
|
|
|
FROM vendored AS validate
|
2019-03-24 14:02:35 +08:00
|
|
|
RUN --mount=target=/context \
|
|
|
|
--mount=target=.,type=tmpfs,readwrite \
|
|
|
|
rsync -a /context/. . && \
|
2019-03-23 04:29:28 +08:00
|
|
|
git add -A && \
|
|
|
|
rm -rf vendor && \
|
|
|
|
cp -rf /out/* . && \
|
|
|
|
./hack/validate-vendor check
|