go1.9.5 (released 2018/03/28) includes fixes to the compiler, go command, and net/http/pprof package. See the Go 1.9.5 milestone on the issue tracker for details: https://github.com/golang/go/issues?q=milestone%3AGo1.9.5 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
218 B
Docker
9 lines
218 B
Docker
FROM golang:1.9.5-alpine3.6
|
|
|
|
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
|