From a762abd04590622fa126d73a14ee1e7ef637b398 Mon Sep 17 00:00:00 2001 From: Justin Cormack Date: Wed, 23 Mar 2016 12:24:21 +0000 Subject: [PATCH] remove all uses of go get as everything vendored in #56 Signed-off-by: Justin Cormack --- alpine/packages/9pudc/Dockerfile | 2 +- alpine/packages/hupper/Dockerfile | 2 +- alpine/packages/mdnstool/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/alpine/packages/9pudc/Dockerfile b/alpine/packages/9pudc/Dockerfile index d246725db..eaf7b8235 100644 --- a/alpine/packages/9pudc/Dockerfile +++ b/alpine/packages/9pudc/Dockerfile @@ -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 diff --git a/alpine/packages/hupper/Dockerfile b/alpine/packages/hupper/Dockerfile index c9f777b88..49c2214b8 100644 --- a/alpine/packages/hupper/Dockerfile +++ b/alpine/packages/hupper/Dockerfile @@ -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 diff --git a/alpine/packages/mdnstool/Dockerfile b/alpine/packages/mdnstool/Dockerfile index 28336d368..18e14d02e 100644 --- a/alpine/packages/mdnstool/Dockerfile +++ b/alpine/packages/mdnstool/Dockerfile @@ -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