mirror of https://github.com/docker/cli.git
17 lines
567 B
Docker
17 lines
567 B
Docker
FROM golang:1.8.3-alpine
|
|
|
|
RUN apk add -U git
|
|
|
|
ARG GOMETALINTER_SHA=4306381615a2ba2a207f8fcea02c08c6b2b0803f
|
|
RUN go get -d github.com/alecthomas/gometalinter && \
|
|
cd /go/src/github.com/alecthomas/gometalinter && \
|
|
git checkout -q "$GOMETALINTER_SHA" && \
|
|
go build -v -o /usr/local/bin/gometalinter . && \
|
|
gometalinter --install && \
|
|
rm -rf /go/src/* /go/pkg/*
|
|
|
|
WORKDIR /go/src/github.com/docker/cli
|
|
ENV CGO_ENABLED=0
|
|
ENTRYPOINT ["/usr/local/bin/gometalinter"]
|
|
CMD ["--config=gometalinter.json", "./..."]
|