2021-07-22 08:48:09 -04:00
|
|
|
# syntax=docker/dockerfile:1.3
|
2021-03-03 02:03:02 -05:00
|
|
|
|
|
|
|
ARG BASE_VARIANT=alpine
|
2021-11-05 06:12:54 -04:00
|
|
|
ARG GO_VERSION=1.16.10
|
2021-09-15 06:47:50 -04:00
|
|
|
ARG XX_VERSION=1.0.0-rc.2
|
2021-10-11 10:54:09 -04:00
|
|
|
ARG GOVERSIONINFO_VERSION=v1.3.0
|
2021-03-03 02:03:02 -05:00
|
|
|
|
|
|
|
FROM --platform=$BUILDPLATFORM golang:${GO_VERSION}-${BASE_VARIANT} AS gostable
|
2021-07-15 09:15:38 -04:00
|
|
|
FROM --platform=$BUILDPLATFORM golang:1.17rc1-${BASE_VARIANT} AS golatest
|
|
|
|
|
|
|
|
FROM gostable AS go-linux
|
|
|
|
FROM gostable AS go-darwin
|
|
|
|
FROM gostable AS go-windows-amd64
|
|
|
|
FROM gostable AS go-windows-386
|
|
|
|
FROM gostable AS go-windows-arm
|
|
|
|
FROM golatest AS go-windows-arm64
|
2021-03-05 04:05:04 -05:00
|
|
|
FROM go-windows-${TARGETARCH} AS go-windows
|
2021-03-03 02:03:02 -05:00
|
|
|
|
2021-09-15 06:47:50 -04:00
|
|
|
FROM --platform=$BUILDPLATFORM tonistiigi/xx:${XX_VERSION} AS xx
|
2021-03-03 02:03:02 -05:00
|
|
|
|
|
|
|
FROM go-${TARGETOS} AS build-base-alpine
|
|
|
|
COPY --from=xx / /
|
2021-03-05 03:56:55 -05:00
|
|
|
RUN apk add --no-cache clang lld llvm file git
|
2021-03-03 02:03:02 -05:00
|
|
|
WORKDIR /go/src/github.com/docker/cli
|
|
|
|
|
|
|
|
FROM build-base-alpine AS build-alpine
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
# gcc is installed for libgcc only
|
|
|
|
RUN xx-apk add --no-cache musl-dev gcc
|
|
|
|
|
|
|
|
FROM go-${TARGETOS} AS build-base-buster
|
|
|
|
COPY --from=xx / /
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y clang lld file
|
|
|
|
WORKDIR /go/src/github.com/docker/cli
|
|
|
|
|
|
|
|
FROM build-base-buster AS build-buster
|
|
|
|
ARG TARGETPLATFORM
|
|
|
|
RUN xx-apt install --no-install-recommends -y libc6-dev libgcc-8-dev
|
|
|
|
|
|
|
|
FROM build-${BASE_VARIANT} AS build
|
|
|
|
# GO_LINKMODE defines if static or dynamic binary should be produced
|
|
|
|
ARG GO_LINKMODE=static
|
|
|
|
# GO_BUILDTAGS defines additional build tags
|
|
|
|
ARG GO_BUILDTAGS
|
|
|
|
# GO_STRIP strips debugging symbols if set
|
|
|
|
ARG GO_STRIP
|
|
|
|
# CGO_ENABLED manually sets if cgo is used
|
|
|
|
ARG CGO_ENABLED
|
|
|
|
# VERSION sets the version for the produced binary
|
|
|
|
ARG VERSION
|
2021-10-11 10:54:09 -04:00
|
|
|
# COMPANY_NAME sets the company that produced the windows binary
|
|
|
|
ARG COMPANY_NAME
|
|
|
|
# GOVERSIONINFO_VERSION defines goversioninfo tool version
|
|
|
|
ARG GOVERSIONINFO_VERSION
|
|
|
|
RUN --mount=type=cache,target=/root/.cache \
|
|
|
|
# install goversioninfo tool
|
|
|
|
GO111MODULE=auto go install github.com/josephspurrier/goversioninfo/cmd/goversioninfo@${GOVERSIONINFO_VERSION}
|
|
|
|
RUN --mount=type=bind,target=.,ro \
|
|
|
|
--mount=type=cache,target=/root/.cache \
|
2021-03-03 02:03:02 -05:00
|
|
|
--mount=from=dockercore/golang-cross:xx-sdk-extras,target=/xx-sdk,src=/xx-sdk \
|
2021-03-05 03:56:55 -05:00
|
|
|
--mount=type=tmpfs,target=cli/winresources \
|
2021-10-11 10:54:09 -04:00
|
|
|
# override the default behavior of go with xx-go
|
2021-03-03 02:03:02 -05:00
|
|
|
xx-go --wrap && \
|
|
|
|
# export GOCACHE=$(go env GOCACHE)/$(xx-info)$([ -f /etc/alpine-release ] && echo "alpine") && \
|
|
|
|
TARGET=/out ./scripts/build/binary && \
|
|
|
|
xx-verify $([ "$GO_LINKMODE" = "static" ] && echo "--static") /out/docker
|
|
|
|
|
|
|
|
FROM build-base-${BASE_VARIANT} AS dev
|
2021-03-05 03:56:55 -05:00
|
|
|
COPY . .
|
2021-03-03 02:03:02 -05:00
|
|
|
|
|
|
|
FROM scratch AS binary
|
|
|
|
COPY --from=build /out .
|