mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Dockerfile.e2e: use /build to be consistent with main Dockerfile
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
63aefbfbca
commit
045beed6c8
1 changed files with 5 additions and 5 deletions
|
@ -36,11 +36,11 @@ ENV DOCKER_GITCOMMIT=${DOCKER_GITCOMMIT:-undefined}
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Build DockerSuite.TestBuild* dependency
|
# Build DockerSuite.TestBuild* dependency
|
||||||
RUN CGO_ENABLED=0 go build -buildmode=pie -o /output/httpserver github.com/docker/docker/contrib/httpserver
|
RUN CGO_ENABLED=0 go build -buildmode=pie -o /build/httpserver github.com/docker/docker/contrib/httpserver
|
||||||
|
|
||||||
# Build the integration tests and copy the resulting binaries to /output/tests
|
# Build the integration tests and copy the resulting binaries to /build/tests
|
||||||
RUN hack/make.sh build-integration-test-binary
|
RUN hack/make.sh build-integration-test-binary
|
||||||
RUN mkdir -p /output/tests && find . -name test.main -exec cp --parents '{}' /output/tests \;
|
RUN mkdir -p /build/tests && find . -name test.main -exec cp --parents '{}' /build/tests \;
|
||||||
|
|
||||||
## Generate testing image
|
## Generate testing image
|
||||||
FROM alpine:3.9 as runner
|
FROM alpine:3.9 as runner
|
||||||
|
@ -73,6 +73,6 @@ COPY integration/build/testdata /tests/integration/build/testdata
|
||||||
COPY integration-cli/fixtures /tests/integration-cli/fixtures
|
COPY integration-cli/fixtures /tests/integration-cli/fixtures
|
||||||
|
|
||||||
COPY --from=frozen-images /build/ /docker-frozen-images
|
COPY --from=frozen-images /build/ /docker-frozen-images
|
||||||
COPY --from=builder /output/httpserver /tests/contrib/httpserver/httpserver
|
COPY --from=builder /build/httpserver /tests/contrib/httpserver/httpserver
|
||||||
COPY --from=builder /output/tests /tests
|
COPY --from=builder /build/tests /tests
|
||||||
COPY --from=builder /usr/local/bin/docker /usr/bin/docker
|
COPY --from=builder /usr/local/bin/docker /usr/bin/docker
|
||||||
|
|
Loading…
Add table
Reference in a new issue