diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index b0eb704c92cbcff0b05dfb9fb27771831b8cbf78..1d7d56fa50d66d71cdd9db5c4cba87739c094dfd 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -110,11 +110,11 @@ RUN set -x \ && rm -rf "$GOPATH" # Install notary server -ENV NOTARY_COMMIT 0c11a970826e62479379ccc75a45184460b9200f +ENV NOTARY_VERSION docker-v1.10-3 RUN set -x \ && export GOPATH="$(mktemp -d)" \ && git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \ - && (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_COMMIT") \ + && (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \ && GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \ go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \ && rm -rf "$GOPATH" diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 1bef8ecbcb3d658377ab87a17e6228812d73930d..fab175de9d328e6e31cb70ba1e78e04e42d1414c 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -144,7 +144,7 @@ RUN set -x \ && rm -rf "$GOPATH" # Install notary server -ENV NOTARY_VERSION docker-v1.10-2 +ENV NOTARY_VERSION docker-v1.10-3 RUN set -x \ && export GOPATH="$(mktemp -d)" \ && git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \ diff --git a/Dockerfile.ppc64le b/Dockerfile.ppc64le index dac1878974beb9defd0e4f8408f1c9e7deb5dd97..a457ae3f503512422be0ad5244bc986d658bbc4a 100644 --- a/Dockerfile.ppc64le +++ b/Dockerfile.ppc64le @@ -123,11 +123,11 @@ RUN set -x \ # TODO update this when we upgrade to Go 1.5.1+ # Install notary server -#ENV NOTARY_COMMIT 8e8122eb5528f621afcd4e2854c47302f17392f7 +#ENV NOTARY_VERSION docker-v1.10-3 #RUN set -x \ # && export GOPATH="$(mktemp -d)" \ # && git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \ -# && (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_COMMIT") \ +# && (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \ # && GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \ # go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \ # && rm -rf "$GOPATH" diff --git a/Dockerfile.s390x b/Dockerfile.s390x index fdee716c9e0e26801e011d9c1832c5e1c037c473..eac8e71db4274005a56de0a3e26d209b48e1cd50 100644 --- a/Dockerfile.s390x +++ b/Dockerfile.s390x @@ -116,11 +116,11 @@ RUN set -x \ && rm -rf "$GOPATH" # Install notary server -ENV NOTARY_COMMIT 8e8122eb5528f621afcd4e2854c47302f17392f7 +ENV NOTARY_VERSION docker-v1.10-3 RUN set -x \ && export GOPATH="$(mktemp -d)" \ && git clone https://github.com/docker/notary.git "$GOPATH/src/github.com/docker/notary" \ - && (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_COMMIT") \ + && (cd "$GOPATH/src/github.com/docker/notary" && git checkout -q "$NOTARY_VERSION") \ && GOPATH="$GOPATH/src/github.com/docker/notary/Godeps/_workspace:$GOPATH" \ go build -o /usr/local/bin/notary-server github.com/docker/notary/cmd/notary-server \ && rm -rf "$GOPATH"