Browse code

[ppc64le] fix notary vendor link

Notary switched to vendor a while ago, so make that change here. Change
is consistent with all other dockerfiles.

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>

Christopher Jones authored on 2017/03/23 06:45:18
Showing 1 changed files
... ...
@@ -136,9 +136,9 @@ RUN set -x \
136 136
 	&& export GOPATH="$(mktemp -d)" \
137 137
 	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
138 138
 	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
139
-	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
139
+	&& GOPATH="$GOPATH/src/github.com/docker/notary/vendor:$GOPATH" \
140 140
 		go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \
141
-	&& GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \
141
+	&& GOPATH="$GOPATH/src/github.com/docker/notary/vendor:$GOPATH" \
142 142
 		go build -o /usr/local/bin/notary github.com/docker/notary/cmd/notary \
143 143
 	&& rm -rf "$GOPATH"
144 144