mirror of https://github.com/docker/cli.git
add Dockerfile for CI
Signed-off-by: Gaetan de Villele <gdevillele@gmail.com>
This commit is contained in:
parent
728060a7eb
commit
9c3f1d9ae3
|
@ -0,0 +1,29 @@
|
|||
#
|
||||
# This Dockerfile makes the docker builder run the tests.
|
||||
# It means that if this Dockerfile can be built successfully,
|
||||
# the tests passed.
|
||||
#
|
||||
# From the repo root dir:
|
||||
# $ docker build -f dockerfiles/Dockerfile.ci .
|
||||
#
|
||||
|
||||
FROM golang:1.8-alpine
|
||||
|
||||
RUN apk add -U git make
|
||||
|
||||
RUN go get github.com/LK4D4/vndr && \
|
||||
cp /go/bin/vndr /usr/bin && \
|
||||
rm -rf /go/src/* /go/pkg/* /go/bin/*
|
||||
|
||||
RUN go get github.com/mitchellh/gox && \
|
||||
cp /go/bin/gox /usr/bin && \
|
||||
rm -rf /go/src/* /go/pkg/* /go/bin/*
|
||||
|
||||
COPY . /go/src/github.com/docker/cli
|
||||
|
||||
ENV CGO_ENABLED=0
|
||||
WORKDIR /go/src/github.com/docker/cli
|
||||
|
||||
RUN make cross
|
||||
|
||||
CMD sh
|
Loading…
Reference in New Issue