2022-03-17 05:37:08 -04:00
|
|
|
# syntax=docker/dockerfile:1
|
2021-12-16 15:15:53 -05:00
|
|
|
|
update golang to 1.18.1
go1.18.1 (released 2022-04-12) includes security fixes to the crypto/elliptic,
crypto/x509, and encoding/pem packages, as well as bug fixes to the compiler,
linker, runtime, the go command, vet, and the bytes, crypto/x509, and go/types
packages. See the Go 1.18.1 milestone on the issue tracker for details:
https://github.com/golang/go/issues?q=milestone%3AGo1.18.1+label%3ACherryPickApproved
Includes fixes for:
- CVE-2022-24675 (https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-24675)
- CVE-2022-27536 (https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-27536)
- CVE-2022-28327 (https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-28327)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-04-19 03:58:44 -04:00
|
|
|
ARG GO_VERSION=1.18.1
|
2021-12-16 15:15:53 -05:00
|
|
|
ARG MODOUTDATED_VERSION=v0.8.0
|
|
|
|
|
|
|
|
FROM golang:${GO_VERSION}-alpine AS base
|
|
|
|
RUN apk add --no-cache bash git rsync
|
|
|
|
WORKDIR /src
|
|
|
|
|
|
|
|
FROM base AS vendored
|
2022-01-28 05:40:33 -05:00
|
|
|
ENV GOPROXY=direct
|
2021-12-16 15:15:53 -05:00
|
|
|
RUN --mount=target=/context \
|
|
|
|
--mount=target=.,type=tmpfs \
|
|
|
|
--mount=target=/go/pkg/mod,type=cache <<EOT
|
|
|
|
set -e
|
|
|
|
rsync -a /context/. .
|
|
|
|
./scripts/vendor update
|
|
|
|
mkdir /out
|
|
|
|
cp -r vendor.mod vendor.sum vendor /out
|
|
|
|
EOT
|
|
|
|
|
|
|
|
FROM scratch AS update
|
|
|
|
COPY --from=vendored /out /out
|
|
|
|
|
|
|
|
FROM vendored AS validate
|
|
|
|
RUN --mount=target=/context \
|
|
|
|
--mount=target=.,type=tmpfs <<EOT
|
|
|
|
set -e
|
|
|
|
rsync -a /context/. .
|
|
|
|
git add -A
|
|
|
|
rm -rf vendor
|
|
|
|
cp -rf /out/* .
|
|
|
|
./scripts/vendor validate
|
|
|
|
EOT
|
|
|
|
|
|
|
|
FROM psampaz/go-mod-outdated:${MODOUTDATED_VERSION} AS go-mod-outdated
|
|
|
|
FROM base AS outdated
|
2022-01-13 07:47:43 -05:00
|
|
|
ARG UUID
|
2021-12-16 15:15:53 -05:00
|
|
|
RUN --mount=target=.,rw \
|
|
|
|
--mount=target=/go/pkg/mod,type=cache \
|
|
|
|
--mount=from=go-mod-outdated,source=/home/go-mod-outdated,target=/usr/bin/go-mod-outdated \
|
|
|
|
./scripts/vendor outdated
|