mirror of
https://github.com/docker/cli.git
synced 2025-08-31 23:02:07 +03:00
Release notes: https://golang.org/doc/devel/release.html#go1.11 Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
9 lines
216 B
Docker
9 lines
216 B
Docker
FROM golang:1.11.1-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
|