From 9c46b587eec84f6d9b525ecca1d8b66a51055c12 Mon Sep 17 00:00:00 2001 From: Vincent Demeester Date: Thu, 22 Feb 2018 10:51:50 +0100 Subject: [PATCH] Fix Dockerfile.e2e build This images is used to run integration and integration-cli tests on anything that implements the docker api :). The image wasn't building anywore :D Signed-off-by: Vincent Demeester --- Dockerfile.e2e | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Dockerfile.e2e b/Dockerfile.e2e index 88edc5a907..ce13170e32 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -21,13 +21,14 @@ RUN contrib/download-frozen-image-v2.sh /output/docker-frozen-images \ debian:jessie@sha256:287a20c5f73087ab406e6b364833e3fb7b3ae63ca0eb3486555dc27ed32c6e60 \ hello-world:latest@sha256:be0cd392e45be79ffeffa6b05338b98ebb16c87b255f48e297ec7f98e123905c -# Download Docker CLI binary -COPY hack/dockerfile hack/dockerfile -RUN hack/dockerfile/install.sh dockercli +# Install dockercli +# Please edit hack/dockerfile/install/.installer to update them. +COPY hack/dockerfile/install hack/dockerfile/install +RUN ./hack/dockerfile/install/install.sh dockercli # Set tag and add sources ARG DOCKER_GITCOMMIT -ENV DOCKER_GITCOMMIT=$DOCKER_GITCOMMIT +ENV DOCKER_GITCOMMIT=${DOCKER_GITCOMMIT:-undefined} ADD . . # Build DockerSuite.TestBuild* dependency