mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
9 lines
218 B
Docker
9 lines
218 B
Docker
FROM golang:1.9.3-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
|