remove all uses of go get as everything vendored in #56

Signed-off-by: Justin Cormack <justin.cormack@docker.com>
This commit is contained in:
Justin Cormack 2016-03-23 12:24:21 +00:00
parent 4d843f8281
commit a762abd045
3 changed files with 3 additions and 3 deletions

View File

@ -10,6 +10,6 @@ COPY . /go/src/9pudc/
ARG GOARCH
ARG GOOS
RUN go get && go install
RUN go install
RUN [ -f /go/bin/*/9pudc ] && mv /go/bin/*/9pudc /go/bin/ || true

View File

@ -10,6 +10,6 @@ COPY . /go/src/hupper/
ARG GOARCH
ARG GOOS
RUN go get && go install
RUN go install
RUN [ -f /go/bin/*/hupper ] && mv /go/bin/*/hupper /go/bin/ || true

View File

@ -10,6 +10,6 @@ ARG GOOS
COPY . /go/src/mdnstool/
RUN go get && go install
RUN go install
RUN [ -f /go/bin/*/mdnstool ] && mv /go/bin/*/mdnstool /go/bin/ || true