mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
2a6325e310
full diff: https://github.com/golang/go/compare/go1.13.14...go1.13.15 go1.13.15 (released 2020/08/06) includes security fixes to the encoding/binary package. See the Go 1.13.15 milestone on the issue tracker for details. https://github.com/golang/go/issues?q=milestone%3AGo1.13.15+label%3ACherryPickApproved Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
26 lines
960 B
Text
26 lines
960 B
Text
ARG GO_VERSION=1.13.15
|
|
ARG BUILDX_COMMIT=v0.3.1
|
|
ARG BUILDX_REPO=https://github.com/docker/buildx.git
|
|
|
|
FROM golang:${GO_VERSION}-buster AS build
|
|
ARG BUILDX_REPO
|
|
RUN git clone "${BUILDX_REPO}" /buildx
|
|
WORKDIR /buildx
|
|
ARG BUILDX_COMMIT
|
|
RUN git fetch origin "${BUILDX_COMMIT}":build && git checkout build
|
|
ARG GOOS
|
|
ARG GOARCH
|
|
# Keep these essentially no-op var settings for debug purposes.
|
|
# It allows us to see what the GOOS/GOARCH that's being built for is.
|
|
RUN GOOS="${GOOS}" GOARCH="${GOARCH}" BUILDX_COMMIT="${BUILDX_COMMIT}"; \
|
|
pkg="github.com/docker/buildx"; \
|
|
ldflags="\
|
|
-X \"${pkg}/version.Version=$(git describe --tags)\" \
|
|
-X \"${pkg}/version.Revision=$(git rev-parse --short HEAD)\" \
|
|
-X \"${pkg}/version.Package=buildx\" \
|
|
"; \
|
|
go build -mod=vendor -ldflags "${ldflags}" -o /usr/bin/buildx ./cmd/buildx
|
|
|
|
FROM golang:${GO_VERSION}-buster
|
|
COPY --from=build /usr/bin/buildx /usr/bin/buildx
|
|
ENTRYPOINT ["/usr/bin/buildx"]
|