From 2bb68f4a0cb079bcc9d39c510b356080217c7569 Mon Sep 17 00:00:00 2001 From: Evan Cordell Date: Fri, 28 Sep 2018 13:20:40 -0400 Subject: [PATCH] fix(build): don't vendor --- upstream.Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/upstream.Dockerfile b/upstream.Dockerfile index 5df79dc92b..91b04dde4d 100644 --- a/upstream.Dockerfile +++ b/upstream.Dockerfile @@ -4,8 +4,6 @@ WORKDIR /go/src/github.com/operator-framework/operator-lifecycle-manager RUN curl -L https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 -o /bin/jq RUN chmod +x /bin/jq # Cache Dep first -COPY Gopkg.toml Gopkg.lock Makefile ./ -RUN make vendor COPY . . RUN make build RUN go test -c -o /bin/e2e ./test/e2e/...