Browse code

Remove GO15VENDOREXPERIMENT

This environment variable is no longer
needed in Go 1.6 (as it's not the default).

Removed this environment variable from
all Dockerfiles except the Dockerfile.s390x,
which is still using gcc 5.3 (Go 1.5)

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2016/05/28 01:15:01
Showing 3 changed files
... ...
@@ -179,7 +179,6 @@ RUN set -x \
179 179
 # Install notary and notary-server
180 180
 ENV NOTARY_VERSION v0.3.0
181 181
 RUN set -x \
182
-	&& export GO15VENDOREXPERIMENT=1 \
183 182
 	&& export GOPATH="$(mktemp -d)" \
184 183
 	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
185 184
 	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
... ...
@@ -119,7 +119,6 @@ RUN set -x \
119 119
 # Install notary and notary-server
120 120
 ENV NOTARY_VERSION v0.3.0
121 121
 RUN set -x \
122
-	&& export GO15VENDOREXPERIMENT=1 \
123 122
 	&& export GOPATH="$(mktemp -d)" \
124 123
 	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
125 124
 	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \
... ...
@@ -128,7 +128,6 @@ RUN set -x \
128 128
 # Install notary and notary-server
129 129
 ENV NOTARY_VERSION v0.3.0
130 130
 RUN set -x \
131
-	&& export GO15VENDOREXPERIMENT=1 \
132 131
 	&& export GOPATH="$(mktemp -d)" \
133 132
 	&& git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \
134 133
 	&& (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \