From b73e3407e3a7fd764ca292f5c36b02651eb46ac9 Mon Sep 17 00:00:00 2001 From: Sebastiaan van Stijn Date: Fri, 19 Apr 2019 16:26:53 +0200 Subject: [PATCH] Dockerfile.e2e: builder: change output directory to simplify copy Signed-off-by: Sebastiaan van Stijn --- Dockerfile.e2e | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.e2e b/Dockerfile.e2e index 3a7ea7e19d..d1bd9a37c1 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -44,7 +44,7 @@ ARG DOCKER_GITCOMMIT ENV DOCKER_GITCOMMIT=${DOCKER_GITCOMMIT:-undefined} COPY . . RUN hack/make.sh build-integration-test-binary -RUN mkdir -p /build/tests && find . -name test.main -exec cp --parents '{}' /build/tests \; +RUN mkdir -p /build/ && find . -name test.main -exec cp --parents '{}' /build \; ## Generate testing image FROM alpine:3.9 as runner @@ -77,4 +77,4 @@ COPY integration-cli/fixtures /tests/integration-cli/fixtures COPY --from=frozen-images /build/ /docker-frozen-images COPY --from=dockercli /build/ /usr/bin/ COPY --from=contrib /build/ /tests/contrib/ -COPY --from=builder /build/tests /tests +COPY --from=builder /build/ /tests/