go1.11.12 (released 2019/07/08) includes fixes to the compiler and the linker. See the Go 1.11.12 milestone on our issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.11.12 Full diff: https://github.com/golang/go/compare/go1.11.11...go1.11.12 Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
9 lines
217 B
Docker
9 lines
217 B
Docker
FROM golang:1.11.12-alpine
|
|
|
|
RUN apk add -U git bash coreutils gcc musl-dev
|
|
|
|
ENV CGO_ENABLED=0 \
|
|
DISABLE_WARN_OUTSIDE_CONTAINER=1
|
|
WORKDIR /go/src/github.com/docker/cli
|
|
CMD ./scripts/build/binary
|